Struct trust_dns_openssl::TlsClientStreamBuilder [−][src]
pub struct TlsClientStreamBuilder<S>(_);
Expand description
A Builder for the TlsClientStream
Implementations
Creates a builder for the construction of a TlsClientStream.
Add a custom trusted peer certificate or certificate authority.
If this is the ‘client’ then the ‘server’ must have it associated as it’s identity
, or have had the identity
signed by this certificate.
Add a custom trusted peer certificate or certificate authority encoded as a (binary) DER-encoded X.509 certificate.
If this is the ‘client’ then the ‘server’ must have it associated as it’s identity
, or have had the identity
signed by this certificate.
pub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Pin<Box<dyn Future<Output = Result<TcpClientStream<AsyncIoTokioAsStd<SslStream<AsyncIoStdAsTokio<S>>>>, ProtoError>> + Send + 'static, Global>>, BufDnsStreamHandle)
pub fn build(
self,
name_server: SocketAddr,
dns_name: String
) -> (Pin<Box<dyn Future<Output = Result<TcpClientStream<AsyncIoTokioAsStd<SslStream<AsyncIoStdAsTokio<S>>>>, ProtoError>> + Send + 'static, Global>>, BufDnsStreamHandle)
Creates a new TlsStream to the specified name_server
Arguments
name_server
- IP and Port for the remote DNS resolverdns_name
- The DNS name, Subject Public Key Info (SPKI) name, as associated to a certificate
Trait Implementations
Returns the “default value” for a type. Read more