mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
don't use exclusive mode until we know it's safe on windows
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27242 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
391b1f6828
commit
4dfbe5803a
1 changed files with 2 additions and 2 deletions
|
@ -1680,7 +1680,7 @@ init_ports()
|
|||
sprintf(ebuf, "Opened UDP socket %d", udp_desc);
|
||||
gdomap_log(LOG_DEBUG);
|
||||
}
|
||||
#if defined(__MINGW32__)
|
||||
#if 0 && defined(SO_EXCLUSIVEADDRUSE)
|
||||
r = 1;
|
||||
if ((setsockopt(udp_desc,SOL_SOCKET,SO_REUSEADDR,(char*)&r,sizeof(r)))<0)
|
||||
{
|
||||
|
@ -1788,7 +1788,7 @@ init_ports()
|
|||
sprintf(ebuf, "Opened TDP socket %d", tcp_desc);
|
||||
gdomap_log(LOG_DEBUG);
|
||||
}
|
||||
#if defined(__MINGW32__)
|
||||
#if 0 && defined(SO_EXCLUSIVEADDRUSE)
|
||||
r = 1;
|
||||
if ((setsockopt(tcp_desc,SOL_SOCKET,SO_REUSEADDR,(char*)&r,sizeof(r)))<0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue