Mina_net2.Libp2p_stream
An open stream.
Close the write pipe when you are done. This won't close the reading end. The reading end will be closed when the remote peer closes their writing end. Once both write ends are closed, the stream ends.
Long-lived connections are likely to get closed by the remote peer if they reach their connection limit. See the module-level notes about connection limiting.
IMPORTANT NOTE: A single write to the stream will not necessarily result in a single read on the other side. libp2p may fragment messages arbitrarily.
val pipes : t -> string Async.Pipe.Reader.t * string Async.Pipe.Writer.t
pipes t
returns the reader/writer pipe for our half of the stream.
val remote_peer : t -> Network_peer.Peer.t