Set reuse address option (fixes #1043)
When the server is killed there may still be client-sockets connected in the TIME_WAIT state, causing the bind() call to fail. With the REUSEADDR option we can reuse the address immediately unless another process is actually *listening* on the same address. that we want to reuse the address
This commit is contained in:
parent
506d9a256d
commit
0d4c48a9c0
@ -296,6 +296,7 @@ def get_port(address, port):
|
||||
"""
|
||||
s = socket.socket()
|
||||
try:
|
||||
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
s.bind((address, port))
|
||||
s.listen(-1)
|
||||
except socket.error:
|
||||
|
Loading…
Reference in New Issue
Block a user