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 /php/test | |
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 'php/test')
-rw-r--r-- | php/test/Ice/info/Client.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/php/test/Ice/info/Client.php b/php/test/Ice/info/Client.php index 52425a505c8..46c800c3b33 100644 --- a/php/test/Ice/info/Client.php +++ b/php/test/Ice/info/Client.php @@ -44,9 +44,6 @@ function allTests($communicator) $protocolVersionClass = $NS ? "Ice\\ProtocolVersion" : "Ice_ProtocolVersion"; $encodingVersionClass = $NS ? "Ice\\EncodingVersion" : "Ice_EncodingVersion"; - $communicator->getProperties()->setProperty("Ice.UDP.SndSize", "1024"); - $communicator->getProperties()->setProperty("Ice.UDP.RcvSize", "2048"); - echo "testing proxy endpoint information... "; flush(); { @@ -86,8 +83,6 @@ function allTests($communicator) test(!$udpEndpoint->secure()); test($udpEndpoint->datagram()); test($udpEndpoint->type() == $udpEndpointType); - test($udpEndpoint->sndBufSize == -1); - test($udpEndpoint->rcvBufSize == -1); $opaqueEndpoint = $endps[2]->getInfo(); test($opaqueEndpoint); |