diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-01-07 12:09:14 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-01-07 12:09:14 -0330 |
commit | aa74b740b1427b19c3de47f4bb8fdfbf2dd5aaa9 (patch) | |
tree | a1e0cba07c2d2ce2c5c9f851c81e6d8d17f8285f /cpp/src/Ice/UdpTransceiver.cpp | |
parent | Added Objective-C mapping (diff) | |
download | ice-aa74b740b1427b19c3de47f4bb8fdfbf2dd5aaa9.tar.bz2 ice-aa74b740b1427b19c3de47f4bb8fdfbf2dd5aaa9.tar.xz ice-aa74b740b1427b19c3de47f4bb8fdfbf2dd5aaa9.zip |
Revert "ICE-6082 added sndBufSize and rcvBufSize to UDPEndpointInfo"
This reverts commit ad55ad9c4996fb32452bba72e337152b27e61963.
Diffstat (limited to 'cpp/src/Ice/UdpTransceiver.cpp')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index 8085c1d47bb..1d2fcf47bbf 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -884,19 +884,6 @@ IceInternal::UdpTransceiver::effectivePort() const return getPort(_addr); } -int -IceInternal::UdpTransceiver::sndBufSize() const -{ - return _sndSize; -} - -int -IceInternal::UdpTransceiver::rcvBufSize() const -{ - return _rcvSize; -} - - IceInternal::UdpTransceiver::UdpTransceiver(const ProtocolInstancePtr& instance, const Address& addr, #ifdef ICE_OS_WINRT @@ -1097,10 +1084,6 @@ IceInternal::UdpTransceiver::setBufSize(const Ice::PropertiesPtr& properties) } } } - - if (_endpoint) { - _endpoint->setBufSize(_sndSize, _rcvSize); - } } #ifdef ICE_OS_WINRT |