nim-libp2p/libp2p/protocols/protocol.nim

23 lines
722 B
Nim
Raw Normal View History

2019-08-27 20:30:53 -06:00
## Nim-LibP2P
2019-09-24 11:48:23 -06:00
## Copyright (c) 2019 Status Research & Development GmbH
2019-08-27 20:30:53 -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.
import chronos
import ../stream/connection
2019-08-27 20:30:53 -06:00
type
LPProtoHandler* = proc (conn: Connection,
proto: string):
2019-09-02 14:45:52 -06:00
Future[void] {.gcsafe, closure.}
2019-08-30 17:45:57 -06:00
LPProtocol* = ref object of RootObj
codec*: string
2019-09-02 14:45:52 -06:00
handler*: LPProtoHandler ## this handler gets invoked by the protocol negotiator
2019-08-31 11:58:49 -06:00
method init*(p: LPProtocol) {.base, gcsafe.} = discard