mirror of
https://github.com/vacp2p/nim-libp2p.git
synced 2025-02-05 13:24:33 +00:00
minor style fixes
This commit is contained in:
parent
f9f75254af
commit
464d75d159
@ -17,11 +17,13 @@ import connection,
|
|||||||
logScope:
|
logScope:
|
||||||
topic = "Multistream"
|
topic = "Multistream"
|
||||||
|
|
||||||
const MsgSize* = 64*1024
|
const
|
||||||
const Codec* = "/multistream/1.0.0"
|
MsgSize* = 64*1024
|
||||||
const MSCodec* = "\x13" & Codec & "\n"
|
Codec* = "/multistream/1.0.0"
|
||||||
const Na = "\x03na\n"
|
|
||||||
const Ls = "\x03ls\n"
|
MSCodec* = "\x13" & Codec & "\n"
|
||||||
|
Na = "\x03na\n"
|
||||||
|
Ls = "\x03ls\n"
|
||||||
|
|
||||||
type
|
type
|
||||||
MultisteamSelectException = object of CatchableError
|
MultisteamSelectException = object of CatchableError
|
||||||
|
@ -20,10 +20,11 @@ import ../protobuf/minprotobuf,
|
|||||||
logScope:
|
logScope:
|
||||||
topic = "identify"
|
topic = "identify"
|
||||||
|
|
||||||
const IdentifyCodec* = "/ipfs/id/1.0.0"
|
const
|
||||||
const IdentifyPushCodec* = "/ipfs/id/push/1.0.0"
|
IdentifyCodec* = "/ipfs/id/1.0.0"
|
||||||
const ProtoVersion* = "ipfs/0.1.0"
|
IdentifyPushCodec* = "/ipfs/id/push/1.0.0"
|
||||||
const AgentVersion* = "nim-libp2p/0.0.1"
|
ProtoVersion* = "ipfs/0.1.0"
|
||||||
|
AgentVersion* = "nim-libp2p/0.0.1"
|
||||||
|
|
||||||
#TODO: implment push identify, leaving out for now as it is not essential
|
#TODO: implment push identify, leaving out for now as it is not essential
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user