Struct libp2p_quic::Config

source ·
pub struct Config {
    pub handshake_timeout: Duration,
    pub max_idle_timeout: u32,
    pub keep_alive_interval: Duration,
    pub max_concurrent_stream_limit: u32,
    pub max_stream_data: u32,
    pub max_connection_data: u32,
    /* private fields */
}
Expand description

Config for the transport.

Fields§

§handshake_timeout: Duration

Timeout for the initial handshake when establishing a connection. The actual timeout is the minimum of this an the Config::max_idle_timeout.

§max_idle_timeout: u32

Maximum duration of inactivity in ms to accept before timing out the connection.

§keep_alive_interval: Duration

Period of inactivity before sending a keep-alive packet. Must be set lower than the idle_timeout of both peers to be effective.

See quinn_proto::TransportConfig::keep_alive_interval for more info.

§max_concurrent_stream_limit: u32

Maximum number of incoming bidirectional streams that may be open concurrently by the remote peer.

§max_stream_data: u32

Max unacknowledged data in bytes that may be send on a single stream.

§max_connection_data: u32

Max unacknowledged data in bytes that may be send in total on all streams of a connection.

Implementations§

Creates a new configuration object with default values.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more