rust-libp2p/tcp-transport
Pierre Krieger 76f13ab5e5
Instantly deny IPs of the form 0.0.0.0:0 (#275)
* Instantly deny IPs of the form 0.0.0.0:0

* Also put the change in websockets
2018-07-02 10:51:10 +02:00
..
2018-03-20 14:44:46 +01:00

TCP transport

Implementation of the libp2p Transport trait for TCP/IP.

Uses the tokio library.

Usage

Create a tokio Core, then grab a handle by calling the handle() method on it, then create a TcpConfig and pass the handle.

Example:

extern crate libp2p_tcp_transport;
extern crate tokio_core;

use libp2p_tcp_transport::TcpConfig;
use tokio_core::reactor::Core;

let mut core = Core::new().unwrap();
let tcp = TcpConfig::new(core.handle());

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.