diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-19 15:39:33 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-19 15:39:33 +0000 |
commit | c210b6ff1ef66fd972c40bcc07db28231099e7b4 (patch) | |
tree | f274afcfff721976a71b3389f373ab759c8e5fa3 /cpp/src/Ice/SUdpControlChannel.cpp | |
parent | Updated the properties added to the SSL extension, and those added for (diff) | |
download | ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.tar.bz2 ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.tar.xz ice-c210b6ff1ef66fd972c40bcc07db28231099e7b4.zip |
Removed the SUDP implementation (for now). See the tag sudp in CVS to
recover.
Diffstat (limited to 'cpp/src/Ice/SUdpControlChannel.cpp')
-rw-r--r-- | cpp/src/Ice/SUdpControlChannel.cpp | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/cpp/src/Ice/SUdpControlChannel.cpp b/cpp/src/Ice/SUdpControlChannel.cpp deleted file mode 100644 index 1711983ffca..00000000000 --- a/cpp/src/Ice/SUdpControlChannel.cpp +++ /dev/null @@ -1,46 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2001 -// MutableRealms, Inc. -// Huntsville, AL, USA -// -// All Rights Reserved -// -// ********************************************************************** - -#include <Ice/Logger.h> -#include <Ice/TraceLevels.h> -#include <Ice/SUdpControlChannel.h> -#include <Ice/Cryptor.h> -#include <Ice/Instance.h> - -using namespace std; -using namespace Ice; - -void ::IceInternal::incRef(::SecureUdp::ControlChannel* p) { p->__incRef(); } -void ::IceInternal::decRef(::SecureUdp::ControlChannel* p) { p->__decRef(); } - -SecureUdp::ControlChannel::ControlChannel(IceInternal::SUdpTransceiver* transceiver, - const IceInternal::InstancePtr& instance) : - _transceiver(transceiver), - _instance(instance), - _traceLevels(instance->traceLevels()), - _logger(instance->logger()) -{ - assert(transceiver); - - _cryptor = new Cryptor(); -} - -SecureUdp::ControlChannel::~ControlChannel() -{ - unsetTransceiver(); -} - -void -SecureUdp::ControlChannel::unsetTransceiver() -{ - IceUtil::Mutex::Lock sync(_mutex); - _transceiver = 0; -} - |