SO_REUSEPORT should be SO_REUSEADDR.

I found this in a mail of two and a half years ago from Yusuf Goolamabbas.
This commit is contained in:
Guido van Rossum 1998-01-15 22:36:13 +00:00
parent 5081b227f1
commit 48b805c07c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def openmcastsock(group, port):
#
# Allow multiple copies of this program on one machine
# (not strictly needed)
s.setsockopt(SOL_SOCKET, SO_REUSEPORT, 1)
s.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)
#
# Bind it to the port
s.bind(('', port))