52 lines
1.3 KiB
Nim
52 lines
1.3 KiB
Nim
## 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
|
|
|
|
type LPStream* = ref object of RootObj
|
|
closed*: bool
|
|
|
|
method read*(s: LPStream, n = -1): Future[seq[byte]]
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method readExactly*(s: LPStream, pbytes: pointer, nbytes: int): Future[void]
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method readLine*(s: LPStream, limit = 0, sep = "\r\n"): Future[string]
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method readOnce*(s: LPStream, pbytes: pointer, nbytes: int): Future[int]
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method readUntil*(s: LPStream,
|
|
pbytes: pointer, nbytes: int,
|
|
sep: seq[byte]): Future[int]
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method write*(s: LPStream, pbytes: pointer, nbytes: int)
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method write*(s: LPStream, msg: string, msglen = -1)
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method write*(s: LPStream, msg: seq[byte], msglen = -1)
|
|
{.base, async, gcsafe.} =
|
|
discard
|
|
|
|
method close*(s: LPStream)
|
|
{.base, async, gcsafe.} =
|
|
discard
|