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