Module heph::net::tcp[][src]

Expand description

Transmission Control Protocol (TCP) related types.

Three main types are provided:

  • TcpListener listens for incoming connections.
  • TcpStream represents a single TCP connection.
  • TcpServer is an Actor that listens for incoming connections and starts a new actor for each.

Re-exports

pub use listener::TcpListener;
pub use server::TcpServer;
pub use stream::TcpStream;

Modules

Module with TcpListener and related types.

Module with TcpServer and related types.

Module with TcpStream and related types.