parent
399ad33c99
commit
83c0fb0fc8
|
@ -232,7 +232,6 @@ proc runApp(serverHostname: string, serverPort: Port, peerId: string,
|
||||||
let msg = await sock.recv(4)
|
let msg = await sock.recv(4)
|
||||||
echo "received message: ", msg
|
echo "received message: ", msg
|
||||||
await sock.send("pong")
|
await sock.send("pong")
|
||||||
sock.close()
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# initiate a new connection
|
# initiate a new connection
|
||||||
|
@ -244,7 +243,6 @@ proc runApp(serverHostname: string, serverPort: Port, peerId: string,
|
||||||
await sock.send("ping")
|
await sock.send("ping")
|
||||||
let msg = await sock.recv(4)
|
let msg = await sock.recv(4)
|
||||||
echo "received message: ", msg
|
echo "received message: ", msg
|
||||||
sock.close()
|
|
||||||
|
|
||||||
proc main() =
|
proc main() =
|
||||||
if paramCount() < 3 or paramCount() > 4:
|
if paramCount() < 3 or paramCount() > 4:
|
||||||
|
|
Loading…
Reference in New Issue