WIP: logic of NameServer

This commit is contained in:
XOR-op
2023-01-13 15:14:03 +08:00
committed by Benjamin Fry
parent c92d1c3ed9
commit c494045673
10 changed files with 66 additions and 32 deletions

View File

@@ -14,6 +14,7 @@ mod dns_over_rustls;
cfg_if! {
if #[cfg(feature = "dns-over-rustls")] {
pub(crate) use self::dns_over_rustls::new_tls_stream;
pub(crate) use self::dns_over_rustls::new_tls_stream_with_future;
#[cfg(any(feature = "dns-over-https-rustls", feature = "dns-over-quic"))]
pub(crate) use self::dns_over_rustls::CLIENT_CONFIG;
} else if #[cfg(feature = "dns-over-native-tls")] {