diff options
Diffstat (limited to 'cpp/src/IcePack/ServerI.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerI.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cpp/src/IcePack/ServerI.cpp b/cpp/src/IcePack/ServerI.cpp index ec5261a686b..71c90c13028 100644 --- a/cpp/src/IcePack/ServerI.cpp +++ b/cpp/src/IcePack/ServerI.cpp @@ -157,6 +157,19 @@ IcePack::ServerI::stop(const Ice::Current& current) } void +IcePack::ServerI::sendSignal(const string& signal, const Ice::Current& current) +{ + _activator->sendSignal(this, signal); +} + +void +IcePack::ServerI::writeMessage(const string& message, Ice::Int fd, const Ice::Current& current) +{ + _activator->writeMessage(this, message, fd); +} + + +void IcePack::ServerI::destroy(const Ice::Current& current) { bool stop = false; |