nim-libp2p/libp2p/protocol.nim

24 lines
756 B
Nim
Raw Normal View History

2019-08-27 20:30:53 -06: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
2019-09-01 11:31:24 -06:00
import connection, transport,
peerinfo, multiaddress
2019-08-27 20:30:53 -06:00
type
2019-08-30 17:45:57 -06:00
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