Module libp2p_core::transport
source · [−]Expand description
Connection-oriented communication channels.
The main entity of this module is the Transport
trait, which provides an
interface for establishing connections with other nodes, thereby negotiating
any desired protocols. The rest of the module defines combinators for
modifying a transport through composition with other transports or protocol upgrades.
Re-exports
pub use self::choice::OrTransport;
pub use self::memory::MemoryTransport;
pub use self::upgrade::Upgrade;
Modules
Transports with timeouts on the connection setup.
Configuration of transport protocol upgrades.
Structs
A Boxed
transport is a Transport
whose Dial
, Listener
and ListenerUpgrade
futures are Box
ed and only the Output
and Error
types are captured in type variables.
Transport that is possibly disabled.
Enums
Event produced by Transport::Listener
s.
Traits
A transport provides connection-oriented communication between two peers through ordered streams of data (i.e. connections).