diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-05 14:26:38 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-05 14:26:38 +0000 |
commit | 088253dd72c4e65cf8230719def050d0d043aa92 (patch) | |
tree | b54fc12cc78cef3eca7c57de368c116dfa4307bb /cpp/src/Ice/SUdpClientControlChannel.cpp | |
parent | bug fix for dispatching new operations (diff) | |
download | ice-088253dd72c4e65cf8230719def050d0d043aa92.tar.bz2 ice-088253dd72c4e65cf8230719def050d0d043aa92.tar.xz ice-088253dd72c4e65cf8230719def050d0d043aa92.zip |
Big check in. Glacier client authentication (certificate verification) has
been added, SSL logging has been removed, a few clean-ups have taken
place. Getting ready for SSL Extension refactoring.
Diffstat (limited to 'cpp/src/Ice/SUdpClientControlChannel.cpp')
-rw-r--r-- | cpp/src/Ice/SUdpClientControlChannel.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/SUdpClientControlChannel.cpp b/cpp/src/Ice/SUdpClientControlChannel.cpp index 58acd881baf..fd393dcc73c 100644 --- a/cpp/src/Ice/SUdpClientControlChannel.cpp +++ b/cpp/src/Ice/SUdpClientControlChannel.cpp @@ -27,6 +27,9 @@ using namespace std; using namespace Ice; using namespace IceSecurity::SecureUdp; using IceInternal::BasicStream; +using IceInternal::InstancePtr; +using IceInternal::SUdpTransceiver; +using IceInternal::Buffer; //////////////////////////////////////////////////////////////////////////////// // Public Incoming Methods (from Ice Client Control Channel) @@ -41,7 +44,6 @@ IceSecurity::SecureUdp::ClientControlChannel::serverHello(Long clientID, const B // TODO: There is a wierd segmentation fault happening here if I uncomment // the call to serverKeyChangeMessage(). Dunno why. - // ICE_DEV_DEBUG("About to call serverKeyChangeMessage()"); // serverKeyChangeMessage(key); } @@ -65,7 +67,6 @@ IceSecurity::SecureUdp::ClientControlChannel::serverGoodbye(const Current&) // Protected Methods //////////////////////////////////////////////////////////////////////////////// -// IceSecurity::SecureUdp::ClientControlChannel::ClientControlChannel(const SUdpTransceiverPtr& transceiver, IceSecurity::SecureUdp::ClientControlChannel::ClientControlChannel(SUdpTransceiver* transceiver, const InstancePtr& instance, const std::string& host, |