nim-libp2p/libp2p/protocols/protocol.nim

32 lines
979 B
Nim
Raw Normal View History

2019-08-28 02:30:53 +00:00
## Nim-LibP2P
2019-09-24 17:48:23 +00:00
## Copyright (c) 2019 Status Research & Development GmbH
2019-08-28 02:30:53 +00: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.
import chronos
import ../stream/connection
2019-08-28 02:30:53 +00:00
type
LPProtoHandler* = proc (conn: Connection,
proto: string):
2019-09-02 20:45:52 +00:00
Future[void] {.gcsafe, closure.}
2019-08-30 23:45:57 +00:00
LPProtocol* = ref object of RootObj
codecs*: seq[string]
2019-09-02 20:45:52 +00:00
handler*: LPProtoHandler ## this handler gets invoked by the protocol negotiator
2019-08-31 17:58:49 +00:00
method init*(p: LPProtocol) {.base, gcsafe.} = discard
func codec*(p: LPProtocol): string =
assert(p.codecs.len > 0, "Codecs sequence was empty!")
p.codecs[0]
func `codec=`*(p: LPProtocol, codec: string) =
# always insert as first codec
# if we use this abstraction
p.codecs.insert(codec, 0)