mirror of
https://github.com/codex-storage/nim-codex-dht.git
synced 2025-01-30 21:57:07 +00:00
16 lines
267 B
Nim
16 lines
267 B
Nim
|
import
|
||
|
../eth/p2p/discoveryv5/[node],
|
||
|
libp2p/routing_record
|
||
|
|
||
|
type
|
||
|
AddProviderMessage* = object
|
||
|
cId*: NodeId
|
||
|
prov*: PeerRecord
|
||
|
|
||
|
GetProvidersMessage* = object
|
||
|
cId*: NodeId
|
||
|
|
||
|
ProvidersMessage* = object
|
||
|
total*: uint32
|
||
|
provs*: seq[PeerRecord]
|