libp2p-tcp 0.14.0-alpha.1

TCP/IP transport protocol for libp2p
Documentation

Implementation of the libp2p Transport trait for TCP/IP.

Usage

Example:

extern crate libp2p_tcp;
use libp2p_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 libp2p in general to learn how to use the Transport trait.