nim-libp2p-experimental/libp2p/protocols/protocol.nim

23 lines
722 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
codec*: 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