trust_dns_proto/native_tls/
tls_client_stream.rs1use std::future::Future;
11use std::net::SocketAddr;
12use std::pin::Pin;
13
14use futures_util::TryFutureExt;
15use native_tls::Certificate;
16#[cfg(feature = "mtls")]
17use native_tls::Pkcs12;
18use tokio_native_tls::TlsStream as TokioTlsStream;
19
20use crate::error::ProtoError;
21use crate::iocompat::AsyncIoStdAsTokio;
22use crate::iocompat::AsyncIoTokioAsStd;
23use crate::native_tls::TlsStreamBuilder;
24use crate::tcp::{Connect, DnsTcpStream, TcpClientStream};
25use crate::xfer::BufDnsStreamHandle;
26
27pub type TlsClientStream<S> =
31 TcpClientStream<AsyncIoTokioAsStd<TokioTlsStream<AsyncIoStdAsTokio<S>>>>;
32
33pub struct TlsClientStreamBuilder<S>(TlsStreamBuilder<S>);
35
36impl<S: DnsTcpStream> TlsClientStreamBuilder<S> {
37 pub fn new() -> Self {
39 Self(TlsStreamBuilder::new())
40 }
41
42 pub fn add_ca(&mut self, ca: Certificate) {
46 self.0.add_ca(ca);
47 }
48
49 #[cfg(feature = "mtls")]
51 pub fn identity(&mut self, pkcs12: Pkcs12) {
52 self.0.identity(pkcs12);
53 }
54
55 pub fn bind_addr(&mut self, bind_addr: SocketAddr) {
57 self.0.bind_addr(bind_addr);
58 }
59
60 #[allow(clippy::type_complexity)]
68 pub fn build_with_future<F>(
69 self,
70 future: F,
71 name_server: SocketAddr,
72 dns_name: String,
73 ) -> (
74 Pin<Box<dyn Future<Output = Result<TlsClientStream<S>, ProtoError>> + Send>>,
75 BufDnsStreamHandle,
76 )
77 where
78 F: Future<Output = std::io::Result<S>> + Send + Unpin + 'static,
79 {
80 let (stream_future, sender) = self.0.build_with_future(future, name_server, dns_name);
81
82 let new_future = Box::pin(
83 stream_future
84 .map_ok(TcpClientStream::from_stream)
85 .map_err(ProtoError::from),
86 );
87
88 (new_future, sender)
89 }
90}
91
92impl<S: Connect> TlsClientStreamBuilder<S> {
93 #[allow(clippy::type_complexity)]
100 pub fn build(
101 self,
102 name_server: SocketAddr,
103 dns_name: String,
104 ) -> (
105 Pin<Box<dyn Future<Output = Result<TlsClientStream<S>, ProtoError>> + Send>>,
106 BufDnsStreamHandle,
107 ) {
108 let (stream_future, sender) = self.0.build(name_server, dns_name);
109
110 let new_future = Box::pin(
111 stream_future
112 .map_ok(TcpClientStream::from_stream)
113 .map_err(ProtoError::from),
114 );
115
116 (new_future, sender)
117 }
118}
119
120impl<S: DnsTcpStream> Default for TlsClientStreamBuilder<S> {
121 fn default() -> Self {
122 Self::new()
123 }
124}