removed SO_REUSEADDR

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@28462 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-07-25 12:36:30 +00:00
parent 7ab3284e67
commit 360f2ea332
2 changed files with 1 additions and 5 deletions

View File

@@ -186,6 +186,7 @@ All:
- Spanish translations updated (Javier San Jose)
- fixed DLL build of db.cpp with some OpenWatcom (ABX)
- fixed wxZlibOutputStream to properly close zlib stream
- removed SO_REUSEADDR from wxSocket
All (GUI):

View File

@@ -669,11 +669,6 @@ GSocketError GSocket_SetNonOriented(GSocket *sck)
ioctl(sck->m_fd, FIONBIO, &arg);
_GSocket_Enable_Events(sck);
/* allow a socket to re-bind if the socket is in the TIME_WAIT
state after being previously closed.
*/
setsockopt(sck->m_fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&arg, sizeof(u_long));
/* Bind to the local address,
* and retrieve the actual address bound.
*/