2019-08-20 10:18:15 -06:00
|
|
|
## Nim-LibP2P
|
2019-09-24 11:48:23 -06:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-08-20 10:18:15 -06:00
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
|
2019-09-11 10:14:20 -06:00
|
|
|
import options
|
2019-08-20 10:18:15 -06:00
|
|
|
import peer, multiaddress
|
|
|
|
|
2019-09-04 15:21:33 -06:00
|
|
|
type PeerInfo* = object of RootObj
|
2019-09-11 10:14:20 -06:00
|
|
|
peerId*: Option[PeerID]
|
2019-08-20 10:18:15 -06:00
|
|
|
addrs*: seq[MultiAddress]
|
|
|
|
protocols*: seq[string]
|