adapt examples to 7d2a92346d

This commit is contained in:
Christian Ulrich 2020-08-26 21:39:17 +02:00
parent 7b4f3b790e
commit 39921daf83
No known key found for this signature in database
GPG Key ID: 8241BE099775A097
2 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ type
# Server messages # Server messages
OkGetPeerinfo* = object OkGetPeerinfo* = object
ip: string ip: string
ports: array[3, uint16] ports: seq[uint16]
OkGetEndpoint* = object OkGetEndpoint* = object
ip: IpAddress ip: IpAddress
port: Port port: Port
@ -45,9 +45,9 @@ type
recipient: string recipient: string
command: string command: string
srcIp: IpAddress srcIp: IpAddress
srcPorts: array[3, Port] srcPorts: seq[Port]
dstIp: IpAddress dstIp: IpAddress
dstPorts: array[3, Port] dstPorts: seq[Port]
seqNumbers: seq[uint32] seqNumbers: seq[uint32]
# Exceptions # Exceptions

View File

@ -9,13 +9,13 @@ type
Client = object Client = object
sock: AsyncSocket sock: AsyncSocket
ip: IpAddress ip: IpAddress
ports: array[3, Port] ports: seq[Port]
# Requests # Requests
Register = object Register = object
peerId: string peerId: string
ip: IpAddress ip: IpAddress
ports: array[3, Port] ports: seq[Port]
GetPeerinfo = object GetPeerinfo = object
peerId: string peerId: string