]> git.saurik.com Git - wxWidgets.git/commitdiff
use wxSOCKET_REUSEADDR for IPC sockets (part of patch 1833150)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Feb 2008 23:55:48 +0000 (23:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 3 Feb 2008 23:55:48 +0000 (23:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/sckipc.cpp

index e61654bc511216f4b20cdf50c76515d0befdf45d..9fdd8343eff012cd2b08fc9c9015a5868e397fd4 100644 (file)
@@ -69,7 +69,7 @@ enum
 #endif
 
 // All sockets will be created with the following flags
-#define SCKIPC_FLAGS (wxSOCKET_WAITALL)
+#define SCKIPC_FLAGS (wxSOCKET_WAITALL|wxSOCKET_REUSEADDR)
 
 // headers needed for umask()
 #ifdef __UNIX_LIKE__