[svn r37446] don't try this on windows
--HG-- branch : trunk
This commit is contained in:
parent
780e715395
commit
8f540fe7c6
|
@ -53,8 +53,8 @@ def bind_and_listen(hostport):
|
|||
old = fcntl.fcntl(serversock.fileno(), fcntl.F_GETFD)
|
||||
fcntl.fcntl(serversock.fileno(), fcntl.F_SETFD, old | fcntl.FD_CLOEXEC)
|
||||
# allow the address to be re-used in a reasonable amount of time
|
||||
#if os.name == 'posix' and sys.platform != 'cygwin':
|
||||
serversock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
if os.name == 'posix' and sys.platform != 'cygwin':
|
||||
serversock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
|
||||
serversock.bind(hostport)
|
||||
serversock.listen(5)
|
||||
|
|
Loading…
Reference in New Issue