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

25 lines
762 B
Nim
Raw Normal View History

2019-08-28 02:30:53 +00:00
## Nim-LibP2P
## Copyright (c) 2018 Status Research & Development GmbH
## 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 ../connection,
../peerinfo,
../multiaddress
2019-08-28 02:30:53 +00:00
type
2019-08-30 23:45:57 +00:00
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