Struct quinn::generic::ServerConfigBuilder[][src]

pub struct ServerConfigBuilder<S> where
    S: Session
{ /* fields omitted */ }

Helper for constructing a ServerConfig to be passed to EndpointBuilder::listen to enable incoming connections.

Implementations

impl<S> ServerConfigBuilder<S> where
    S: Session
[src]

pub fn new(config: ServerConfig<S>) -> Self[src]

Construct a builder using config as the initial state.

pub fn build(self) -> ServerConfig<S>[src]

Construct the complete ServerConfig.

pub fn use_stateless_retry(&mut self, enabled: bool) -> &mut Self[src]

Whether to require clients to prove they can receive packets before accepting a connection

impl ServerConfigBuilder<TlsSession>[src]

pub fn enable_keylog(&mut self) -> &mut Self[src]

Enable NSS-compatible cryptographic key logging to the SSLKEYLOGFILE environment variable.

Useful for debugging encrypted communications with protocol analyzers such as Wireshark.

pub fn certificate(
    &mut self,
    cert_chain: CertificateChain,
    key: PrivateKey
) -> Result<&mut Self, TLSError>
[src]

Set the certificate chain that will be presented to clients.

pub fn protocols(&mut self, protocols: &[&[u8]]) -> &mut Self[src]

Set the application-layer protocols to accept, in order of descending preference.

When set, clients which don’t declare support for at least one of the supplied protocols will be rejected.

The IANA maintains a registry of standard protocol IDs, but custom IDs may be used as well.

Trait Implementations

impl<S> Clone for ServerConfigBuilder<S> where
    S: Session
[src]

impl<S> Default for ServerConfigBuilder<S> where
    S: Session
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for ServerConfigBuilder<S> where
    <S as Session>::HmacKey: RefUnwindSafe,
    <S as Session>::ServerConfig: RefUnwindSafe

impl<S> Send for ServerConfigBuilder<S>

impl<S> Sync for ServerConfigBuilder<S>

impl<S> Unpin for ServerConfigBuilder<S> where
    <S as Session>::ServerConfig: Unpin

impl<S> UnwindSafe for ServerConfigBuilder<S> where
    <S as Session>::HmacKey: RefUnwindSafe,
    <S as Session>::ServerConfig: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,