Revert "close sockets in example app"

This reverts commit 399ad33c99.
This commit is contained in:
Christian Ulrich 2020-10-07 09:42:25 +02:00
parent 399ad33c99
commit 83c0fb0fc8
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
1 changed files with 0 additions and 2 deletions

View File

@ -232,7 +232,6 @@ proc runApp(serverHostname: string, serverPort: Port, peerId: string,
let msg = await sock.recv(4)
echo "received message: ", msg
await sock.send("pong")
sock.close()
else:
# initiate a new connection
@ -244,7 +243,6 @@ proc runApp(serverHostname: string, serverPort: Port, peerId: string,
await sock.send("ping")
let msg = await sock.recv(4)
echo "received message: ", msg
sock.close()
proc main() =
if paramCount() < 3 or paramCount() > 4: