Struct trust_dns_openssl::TlsClientStreamBuilder
[−]
[src]
pub struct TlsClientStreamBuilder(_);
A Builder for the TlsClientStream
Methods
impl TlsClientStreamBuilder
[src]
fn new() -> Self
[src]
Creates a builder for the construction of a TlsClientStream.
fn add_ca(&mut self, ca: X509)
[src]
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.
fn add_ca_der(&mut self, ca_der: &[u8]) -> Result<()>
[src]
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.
fn build(
self,
name_server: SocketAddr,
dns_name: String,
loop_handle: &Handle
) -> (Box<Future<Item = TlsClientStream, Error = Error>>, Box<DnsStreamHandle<Error = ClientError>>)
[src]
self,
name_server: SocketAddr,
dns_name: String,
loop_handle: &Handle
) -> (Box<Future<Item = TlsClientStream, Error = Error>>, Box<DnsStreamHandle<Error = ClientError>>)
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 certificateloop_handle
- The reactor Core handle