Module transport
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.
Modules§
- Transports with timeouts on the connection setup.
- Configuration of transport protocol upgrades.
Structs§
- A
Boxed
transport is aTransport
whoseDial
,Listener
andListenerUpgrade
futures areBox
ed and only theOutput
type is captured in a type variable. - Options to customize the behaviour during dialing.
- The ID of a single listener.
- Transport that supports
/memory/N
multiaddresses. - Transport that is possibly disabled.
- Struct returned by
or_transport()
. - A custom upgrade on an
Authenticated
transport.
Enums§
- The port use policy for a new connection.
- Event produced by
Transport
s.
Traits§
- A transport provides connection-oriented communication between two peers through ordered streams of data (i.e. connections).