diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-12-27 20:36:41 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-12-27 20:36:41 +0000 |
commit | 3f954aab0eab59e99bad75f9b1d98a7f7603a46b (patch) | |
tree | 9dfc1df4d61de79e8c453ab5ff789bd5fa516977 /cpp/src/IcePack/ServerI.cpp | |
parent | fixing all, minimal dependencies (diff) | |
download | ice-3f954aab0eab59e99bad75f9b1d98a7f7603a46b.tar.bz2 ice-3f954aab0eab59e99bad75f9b1d98a7f7603a46b.tar.xz ice-3f954aab0eab59e99bad75f9b1d98a7f7603a46b.zip |
Added new icepackadmin commands: signal, stdout, stderr
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; |