From: Vadim Zeitlin Date: Sun, 3 Feb 2008 23:55:48 +0000 (+0000) Subject: use wxSOCKET_REUSEADDR for IPC sockets (part of patch 1833150) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b0e3e682f2bbb3eb7c1721560d72128a87c90fba?ds=inline use wxSOCKET_REUSEADDR for IPC sockets (part of patch 1833150) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/sckipc.cpp b/src/common/sckipc.cpp index e61654bc51..9fdd8343ef 100644 --- a/src/common/sckipc.cpp +++ b/src/common/sckipc.cpp @@ -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__