Struct libp2p::websocket::tls::Config [−][src]
pub struct Config { /* fields omitted */ }
TLS configuration.
Implementations
impl Config
[src]
impl Config
[src]pub fn new<I>(key: PrivateKey, certs: I) -> Result<Config, Error> where
I: IntoIterator<Item = Certificate>,
[src]
I: IntoIterator<Item = Certificate>,
Create a new TLS configuration with the given server key and certificate chain.
pub fn client() -> Config
[src]
Create a client-only configuration.
pub fn builder() -> Builder
[src]
Create a new TLS configuration builder.