mirror of
https://github.com/codex-storage/nim-libp2p.git
synced 2025-01-10 19:16:09 +00:00
903e79ede1
Backporting proper connection cleanup from #36 to align with latest chronos changes. * add close event * use proper varint encoding * add proper channel cleanup in mplex * add connection cleanup in secio * tidy up * add dollar operator * fix tests * don't close connections prematurely * handle closing streams properly * misc * implement address filtering logic * adding pipe tests * don't use gcsafe if not needed * misc * proper connection cleanup and stream muxing * re-enable pubsub tests
37 lines
919 B
Nim
37 lines
919 B
Nim
## Nim-LibP2P
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
|
## 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.
|
|
|
|
import options
|
|
import peer, multiaddress
|
|
|
|
type
|
|
PeerInfo* = object of RootObj
|
|
peerId*: Option[PeerID]
|
|
addrs*: seq[MultiAddress]
|
|
protocols*: seq[string]
|
|
|
|
proc id*(p: PeerInfo): string =
|
|
if p.peerId.isSome:
|
|
result = p.peerId.get().pretty
|
|
|
|
proc `$`*(p: PeerInfo): string =
|
|
if p.peerId.isSome:
|
|
result.add("PeerID: ")
|
|
result.add(p.id & "\n")
|
|
|
|
if p.addrs.len > 0:
|
|
result.add("Peer Addrs: ")
|
|
for a in p.addrs:
|
|
result.add($a & "\n")
|
|
|
|
if p.protocols.len > 0:
|
|
result.add("Protocols: ")
|
|
for proto in p.protocols:
|
|
result.add(proto & "\n")
|