deaddrop-net 2.6.0

DeadDrop networking: transports, discovery, sync, routing, scheduler
Documentation
1
2
3
4
5
use tokio::io::DuplexStream;

pub fn pair(max: usize) -> (DuplexStream, DuplexStream) {
    tokio::io::duplex(max)
}