diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index e5b74f31dbd..decb65b3acd 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -177,7 +177,7 @@ IceInternal::UdpTransceiver::UdpTransceiver(const InstancePtr& instance, const s try { _fd = createSocket(true); - setBlock(_fd, false); + setBlock(_fd, true); getAddress(host, port, _addr); doConnect(_fd, _addr, -1); _connect = false; // We're connected now @@ -207,7 +207,7 @@ IceInternal::UdpTransceiver::UdpTransceiver(const InstancePtr& instance, const s try { _fd = createSocket(true); - setBlock(_fd, false); + setBlock(_fd, true); getAddress(host, port, _addr); doBind(_fd, _addr); |