diff options
Diffstat (limited to 'cpp/src/Ice/UdpTransceiver.cpp')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index 96d17fc3bcb..fa58c144866 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -511,13 +511,13 @@ IceInternal::UdpTransceiver::UdpTransceiver(const InstancePtr& instance, const s if(multicast) { setReuseAddress(_fd, true); - struct sockaddr_storage addr; // // Windows does not allow binding to the mcast address itself // so we bind to INADDR_ANY (0.0.0.0) instead. // #ifdef _WIN32 + struct sockaddr_storage addr; getAddressForServer("", port, addr, instance->protocolSupport()); doBind(_fd, addr); #else |