close sockets in example app
This commit is contained in:
parent
282c0ea6ab
commit
399ad33c99
|
@ -232,6 +232,7 @@ 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
|
||||
|
@ -243,6 +244,7 @@ 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:
|
||||
|
|
Loading…
Reference in New Issue