pub struct TlsClientStreamBuilder<P>(/* private fields */);
Available on crate feature
dns-over-openssl
only.Expand description
A Builder for the TlsClientStream
Implementations§
Source§impl<P: RuntimeProvider> TlsClientStreamBuilder<P>
impl<P: RuntimeProvider> TlsClientStreamBuilder<P>
Sourcepub fn add_ca(&mut self, ca: X509)
pub fn add_ca(&mut self, ca: X509)
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.
Sourcepub fn add_ca_der(&mut self, ca_der: &[u8]) -> Result<()>
pub fn add_ca_der(&mut self, ca_der: &[u8]) -> Result<()>
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.
Sourcepub fn bind_addr(&mut self, bind_addr: SocketAddr)
pub fn bind_addr(&mut self, bind_addr: SocketAddr)
Sets the address to connect from.
Sourcepub fn build_with_future<F>(
self,
future: F,
name_server: SocketAddr,
dns_name: String,
) -> (Pin<Box<dyn Future<Output = Result<TlsClientStream<P::Tcp>, ProtoError>> + Send>>, BufDnsStreamHandle)
pub fn build_with_future<F>( self, future: F, name_server: SocketAddr, dns_name: String, ) -> (Pin<Box<dyn Future<Output = Result<TlsClientStream<P::Tcp>, ProtoError>> + Send>>, BufDnsStreamHandle)
Creates a new TlsStream to the specified name_server with future
§Arguments
future
- future for underlying tcp streamname_server
- IP and Port for the remote DNS resolverdns_name
- The DNS name, Subject Public Key Info (SPKI) name, as associated to a certificate
Sourcepub fn build(
self,
name_server: SocketAddr,
dns_name: String,
) -> (Pin<Box<dyn Future<Output = Result<TlsClientStream<P::Tcp>, ProtoError>> + Send>>, BufDnsStreamHandle)
pub fn build( self, name_server: SocketAddr, dns_name: String, ) -> (Pin<Box<dyn Future<Output = Result<TlsClientStream<P::Tcp>, ProtoError>> + Send>>, BufDnsStreamHandle)
Creates a new TlsStream to the specified name_server
§Arguments
name_server
- IP and Port for the remote DNS resolverbind_addr
- IP and port to connect fromdns_name
- The DNS name, Subject Public Key Info (SPKI) name, as associated to a certificate
Auto Trait Implementations§
impl<P> Freeze for TlsClientStreamBuilder<P>where
P: Freeze,
impl<P> RefUnwindSafe for TlsClientStreamBuilder<P>where
P: RefUnwindSafe,
impl<P> Send for TlsClientStreamBuilder<P>where
P: Send,
impl<P> Sync for TlsClientStreamBuilder<P>where
P: Sync,
impl<P> Unpin for TlsClientStreamBuilder<P>where
P: Unpin,
impl<P> UnwindSafe for TlsClientStreamBuilder<P>where
P: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more