diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-09-06 10:47:37 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-09-06 10:47:37 +0000 |
commit | 3d662f67ca4577229d2054879b126a61f4284fbd (patch) | |
tree | 4fe0639b85c56a839e3dadd1ab3c2fcad0c99008 /cpp/src/Ice/Network.cpp | |
parent | startUpdate doesn't throw CacheOutOfDate anymore but instead return the (diff) | |
download | ice-3d662f67ca4577229d2054879b126a61f4284fbd.tar.bz2 ice-3d662f67ca4577229d2054879b126a61f4284fbd.tar.xz ice-3d662f67ca4577229d2054879b126a61f4284fbd.zip |
Bug 398
Diffstat (limited to 'cpp/src/Ice/Network.cpp')
-rw-r--r-- | cpp/src/Ice/Network.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp index fce22618eba..bac83bdea14 100644 --- a/cpp/src/Ice/Network.cpp +++ b/cpp/src/Ice/Network.cpp @@ -708,20 +708,6 @@ repeatAccept: setTcpNoDelay(ret); setKeepAlive(ret); -#if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0400) - // - // Temporary work-around! - // Make this socket non-inheritable, so that IcePack-launched servers - // do not inherit it. - // - if(!SetHandleInformation(reinterpret_cast<HANDLE>(ret), HANDLE_FLAG_INHERIT, 0)) - { - SyscallException ex(__FILE__, __LINE__); - ex.error = getSystemErrno(); - throw ex; - } -#endif - #ifdef _WIN32 // // Set larger send buffer size to avoid performance problems on |