pub struct Config { /* private fields */ }
Expand description
Stores configuration shared between multiple connections.
Implementations§
Source§impl Config
impl Config
Sourcepub fn new(version: u32) -> Result<Config>
pub fn new(version: u32) -> Result<Config>
Creates a config object with the given version.
§Examples:
let config = quiche::Config::new(quiche::PROTOCOL_VERSION)?;
Sourcepub fn with_boring_ssl_ctx_builder(
version: u32,
tls_ctx_builder: SslContextBuilder,
) -> Result<Config>
Available on crate feature boringssl-boring-crate
only.
pub fn with_boring_ssl_ctx_builder( version: u32, tls_ctx_builder: SslContextBuilder, ) -> Result<Config>
boringssl-boring-crate
only.Creates a config object with the given version and
SslContextBuilder
.
This is useful for applications that wish to manually configure
SslContextBuilder
.
Sourcepub fn load_cert_chain_from_pem_file(&mut self, file: &str) -> Result<()>
pub fn load_cert_chain_from_pem_file(&mut self, file: &str) -> Result<()>
Configures the given certificate chain.
The content of file
is parsed as a PEM-encoded leaf certificate,
followed by optional intermediate certificates.
§Examples:
config.load_cert_chain_from_pem_file("/path/to/cert.pem")?;
Sourcepub fn load_priv_key_from_pem_file(&mut self, file: &str) -> Result<()>
pub fn load_priv_key_from_pem_file(&mut self, file: &str) -> Result<()>
Configures the given private key.
The content of file
is parsed as a PEM-encoded private key.
§Examples:
config.load_priv_key_from_pem_file("/path/to/key.pem")?;
Sourcepub fn load_verify_locations_from_file(&mut self, file: &str) -> Result<()>
pub fn load_verify_locations_from_file(&mut self, file: &str) -> Result<()>
Specifies a file where trusted CA certificates are stored for the purposes of certificate verification.
The content of file
is parsed as a PEM-encoded certificate chain.
§Examples:
config.load_verify_locations_from_file("/path/to/cert.pem")?;
Sourcepub fn load_verify_locations_from_directory(&mut self, dir: &str) -> Result<()>
pub fn load_verify_locations_from_directory(&mut self, dir: &str) -> Result<()>
Specifies a directory where trusted CA certificates are stored for the purposes of certificate verification.
The content of dir
a set of PEM-encoded certificate chains.
§Examples:
config.load_verify_locations_from_directory("/path/to/certs")?;
Sourcepub fn verify_peer(&mut self, verify: bool)
pub fn verify_peer(&mut self, verify: bool)
Configures whether to verify the peer’s certificate.
The default value is true
for client connections, and false
for
server ones.
Note that on the server-side, enabling verification of the peer will
trigger a certificate request and make authentication errors fatal, but
will still allow anonymous clients (i.e. clients that don’t present a
certificate at all). Servers can check whether a client presented a
certificate by calling peer_cert()
if they need to.
Sourcepub fn discover_pmtu(&mut self, discover: bool)
pub fn discover_pmtu(&mut self, discover: bool)
Configures whether to do path MTU discovery.
The default value is false
.
Sourcepub fn grease(&mut self, grease: bool)
pub fn grease(&mut self, grease: bool)
Configures whether to send GREASE values.
The default value is true
.
Sourcepub fn log_keys(&mut self)
pub fn log_keys(&mut self)
Enables logging of secrets.
When logging is enabled, the set_keylog()
method must be called on
the connection for its cryptographic secrets to be logged in the
keylog format to the specified writer.
Sourcepub fn set_ticket_key(&mut self, key: &[u8]) -> Result<()>
pub fn set_ticket_key(&mut self, key: &[u8]) -> Result<()>
Configures the session ticket key material.
On the server this key will be used to encrypt and decrypt session tickets, used to perform session resumption without server-side state.
By default a key is generated internally, and rotated regularly, so applications don’t need to call this unless they need to use a specific key (e.g. in order to support resumption across multiple servers), in which case the application is also responsible for rotating the key to provide forward secrecy.
Sourcepub fn enable_early_data(&mut self)
pub fn enable_early_data(&mut self)
Enables sending or receiving early data.
Sourcepub fn set_application_protos(&mut self, protos_list: &[&[u8]]) -> Result<()>
pub fn set_application_protos(&mut self, protos_list: &[&[u8]]) -> Result<()>
Configures the list of supported application protocols.
On the client this configures the list of protocols to send to the server as part of the ALPN extension.
On the server this configures the list of supported protocols to match against the client-supplied list.
Applications must set a value, but no default is provided.
§Examples:
config.set_application_protos(&[b"http/1.1", b"http/0.9"]);
Sourcepub fn set_application_protos_wire_format(
&mut self,
protos: &[u8],
) -> Result<()>
pub fn set_application_protos_wire_format( &mut self, protos: &[u8], ) -> Result<()>
Configures the list of supported application protocols using wire format.
The list of protocols protos
must be a series of non-empty, 8-bit
length-prefixed strings.
See set_application_protos
for more
background about application protocols.
§Examples:
config.set_application_protos_wire_format(b"\x08http/1.1\x08http/0.9")?;
Sourcepub fn set_max_amplification_factor(&mut self, v: usize)
pub fn set_max_amplification_factor(&mut self, v: usize)
Sets the anti-amplification limit factor.
The default value is 3
.
Sourcepub fn set_max_idle_timeout(&mut self, v: u64)
pub fn set_max_idle_timeout(&mut self, v: u64)
Sets the max_idle_timeout
transport parameter, in milliseconds.
The default value is infinite, that is, no timeout is used.
Sourcepub fn set_max_recv_udp_payload_size(&mut self, v: usize)
pub fn set_max_recv_udp_payload_size(&mut self, v: usize)
Sets the max_udp_payload_size transport
parameter.
The default value is 65527
.
Sourcepub fn set_max_send_udp_payload_size(&mut self, v: usize)
pub fn set_max_send_udp_payload_size(&mut self, v: usize)
Sets the maximum outgoing UDP payload size.
The default and minimum value is 1200
.
Sourcepub fn set_initial_max_data(&mut self, v: u64)
pub fn set_initial_max_data(&mut self, v: u64)
Sets the initial_max_data
transport parameter.
When set to a non-zero value quiche will only allow at most v
bytes of
incoming stream data to be buffered for the whole connection (that is,
data that is not yet read by the application) and will allow more data
to be received as the buffer is consumed by the application.
When set to zero, either explicitly or via the default, quiche will not give any flow control to the peer, preventing it from sending any stream data.
The default value is 0
.
Sourcepub fn set_initial_max_stream_data_bidi_local(&mut self, v: u64)
pub fn set_initial_max_stream_data_bidi_local(&mut self, v: u64)
Sets the initial_max_stream_data_bidi_local
transport parameter.
When set to a non-zero value quiche will only allow at most v
bytes
of incoming stream data to be buffered for each locally-initiated
bidirectional stream (that is, data that is not yet read by the
application) and will allow more data to be received as the buffer is
consumed by the application.
When set to zero, either explicitly or via the default, quiche will not give any flow control to the peer, preventing it from sending any stream data.
The default value is 0
.
Sourcepub fn set_initial_max_stream_data_bidi_remote(&mut self, v: u64)
pub fn set_initial_max_stream_data_bidi_remote(&mut self, v: u64)
Sets the initial_max_stream_data_bidi_remote
transport parameter.
When set to a non-zero value quiche will only allow at most v
bytes
of incoming stream data to be buffered for each remotely-initiated
bidirectional stream (that is, data that is not yet read by the
application) and will allow more data to be received as the buffer is
consumed by the application.
When set to zero, either explicitly or via the default, quiche will not give any flow control to the peer, preventing it from sending any stream data.
The default value is 0
.
Sourcepub fn set_initial_max_stream_data_uni(&mut self, v: u64)
pub fn set_initial_max_stream_data_uni(&mut self, v: u64)
Sets the initial_max_stream_data_uni
transport parameter.
When set to a non-zero value quiche will only allow at most v
bytes
of incoming stream data to be buffered for each unidirectional stream
(that is, data that is not yet read by the application) and will allow
more data to be received as the buffer is consumed by the application.
When set to zero, either explicitly or via the default, quiche will not give any flow control to the peer, preventing it from sending any stream data.
The default value is 0
.
Sourcepub fn set_initial_max_streams_bidi(&mut self, v: u64)
pub fn set_initial_max_streams_bidi(&mut self, v: u64)
Sets the initial_max_streams_bidi
transport parameter.
When set to a non-zero value quiche will only allow v
number of
concurrent remotely-initiated bidirectional streams to be open at any
given time and will increase the limit automatically as streams are
completed.
When set to zero, either explicitly or via the default, quiche will not not allow the peer to open any bidirectional streams.
A bidirectional stream is considered completed when all incoming data
has been read by the application (up to the fin
offset) or the
stream’s read direction has been shutdown, and all outgoing data has
been acked by the peer (up to the fin
offset) or the stream’s write
direction has been shutdown.
The default value is 0
.
Sourcepub fn set_initial_max_streams_uni(&mut self, v: u64)
pub fn set_initial_max_streams_uni(&mut self, v: u64)
Sets the initial_max_streams_uni
transport parameter.
When set to a non-zero value quiche will only allow v
number of
concurrent remotely-initiated unidirectional streams to be open at any
given time and will increase the limit automatically as streams are
completed.
When set to zero, either explicitly or via the default, quiche will not not allow the peer to open any unidirectional streams.
A unidirectional stream is considered completed when all incoming data
has been read by the application (up to the fin
offset) or the
stream’s read direction has been shutdown.
The default value is 0
.
Sourcepub fn set_ack_delay_exponent(&mut self, v: u64)
pub fn set_ack_delay_exponent(&mut self, v: u64)
Sets the ack_delay_exponent
transport parameter.
The default value is 3
.
Sourcepub fn set_max_ack_delay(&mut self, v: u64)
pub fn set_max_ack_delay(&mut self, v: u64)
Sets the max_ack_delay
transport parameter.
The default value is 25
.
Sourcepub fn set_active_connection_id_limit(&mut self, v: u64)
pub fn set_active_connection_id_limit(&mut self, v: u64)
Sets the active_connection_id_limit
transport parameter.
The default value is 2
. Lower values will be ignored.
Sourcepub fn set_disable_active_migration(&mut self, v: bool)
pub fn set_disable_active_migration(&mut self, v: bool)
Sets the disable_active_migration
transport parameter.
The default value is false
.
Sourcepub fn set_cc_algorithm_name(&mut self, name: &str) -> Result<()>
pub fn set_cc_algorithm_name(&mut self, name: &str) -> Result<()>
Sets the congestion control algorithm used by string.
The default value is cubic
. On error Error::CongestionControl
will be returned.
§Examples:
config.set_cc_algorithm_name("reno");
Sourcepub fn set_initial_congestion_window_packets(&mut self, packets: usize)
pub fn set_initial_congestion_window_packets(&mut self, packets: usize)
Sets initial congestion window size in terms of packet count.
The default value is 10.
Sourcepub fn set_cc_algorithm(&mut self, algo: CongestionControlAlgorithm)
pub fn set_cc_algorithm(&mut self, algo: CongestionControlAlgorithm)
Sets the congestion control algorithm used.
The default value is CongestionControlAlgorithm::CUBIC
.
Sourcepub fn enable_hystart(&mut self, v: bool)
pub fn enable_hystart(&mut self, v: bool)
Configures whether to enable HyStart++.
The default value is true
.
Sourcepub fn enable_pacing(&mut self, v: bool)
pub fn enable_pacing(&mut self, v: bool)
Configures whether to enable pacing.
The default value is true
.
Sourcepub fn set_max_pacing_rate(&mut self, v: u64)
pub fn set_max_pacing_rate(&mut self, v: u64)
Sets the max value for pacing rate.
By default pacing rate is not limited.
Sourcepub fn enable_dgram(
&mut self,
enabled: bool,
recv_queue_len: usize,
send_queue_len: usize,
)
pub fn enable_dgram( &mut self, enabled: bool, recv_queue_len: usize, send_queue_len: usize, )
Configures whether to enable receiving DATAGRAM frames.
When enabled, the max_datagram_frame_size
transport parameter is set
to 65536 as recommended by draft-ietf-quic-datagram-01.
The default is false
.
Sourcepub fn set_path_challenge_recv_max_queue_len(&mut self, queue_len: usize)
pub fn set_path_challenge_recv_max_queue_len(&mut self, queue_len: usize)
Configures the max number of queued received PATH_CHALLENGE frames.
When an endpoint receives a PATH_CHALLENGE frame and the queue is full, the frame is discarded.
The default is 3.
Sourcepub fn set_max_connection_window(&mut self, v: u64)
pub fn set_max_connection_window(&mut self, v: u64)
Sets the maximum size of the connection window.
The default value is MAX_CONNECTION_WINDOW (24MBytes).
Sourcepub fn set_max_stream_window(&mut self, v: u64)
pub fn set_max_stream_window(&mut self, v: u64)
Sets the maximum size of the stream window.
The default value is MAX_STREAM_WINDOW (16MBytes).
Sourcepub fn set_stateless_reset_token(&mut self, v: Option<u128>)
pub fn set_stateless_reset_token(&mut self, v: Option<u128>)
Sets the initial stateless reset token.
This value is only advertised by servers. Setting a stateless retry token as a client has no effect on the connection.
The default value is None
.
Sourcepub fn set_disable_dcid_reuse(&mut self, v: bool)
pub fn set_disable_dcid_reuse(&mut self, v: bool)
Sets whether the QUIC connection should avoid reusing DCIDs over different paths.
When set to true
, it ensures that a destination Connection ID is never
reused on different paths. Such behaviour may lead to connection stall
if the peer performs a non-voluntary migration (e.g., NAT rebinding) and
does not provide additional destination Connection IDs to handle such
event.
The default value is false
.
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more