ytls_client/
client_config.rs

1//! yTLS Client Config
2
3/// Implement to provide configuration for the TLS Client Context
4pub trait TlsClientCtxConfig {
5    /// Implement to provide indicative host name (SNI)
6    fn dns_host_name(&self) -> &[u8];
7    // Implement to provide ALPN
8    //fn alpn<'r>(&self) -> Alpn<'r>;
9}