//! 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.
//!
//! [`Actor`]: heph::actor::Actor
pub use TcpListener;
pub use TcpServer;
pub use TcpStream;