Revert "use SO_REUSEADDR in accept loop"

This reverts commit b0398adc12.
master
Christian Ulrich 2020-10-24 19:04:24 +02:00
parent b0398adc12
commit 1b315f0eee
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
2 changed files with 1 additions and 2 deletions

View File

@ -239,7 +239,7 @@ proc runApp(serverHostname: string, serverPort: Port, peerId: string,
srcPort)
asyncCheck handleServerMessages(serverConn)
let sock = await punchHole(punchdConn, serverConn, peerId, otherPeerId,
"tcp-syni")
"tcp-nutss")
echo "connected!"
await sock.send("ping")
let msg = await sock.recv(4)

View File

@ -48,7 +48,6 @@ proc acceptConnections(punchd: Punchd, ip: IpAddress, port: Port,
else:
assert(false, "can only accept TCP or UDP connections")
let sock = newAsyncSocket(sockType = sockType, protocol = protocol)
sock.setSockOpt(OptReuseAddr, true)
sock.bindAddr(port, $ip)
sock.listen()
while true: