susyp2p-tcp 0.7.0

TCP/IP transport protocol for susyp2p
Documentation

Implementation of the susyp2p Transport trait for TCP/IP.

Uses the tokio library.

Usage

Example:

extern crate susyp2p_tcp;
use susyp2p_tcp::TcpConfig;

# fn main() {
let tcp = TcpConfig::new();
# }

The TcpConfig structs implements the Transport trait of the swarm library. See the documentation of swarm and of susyp2p in general to learn how to use the Transport trait.