hickory_proto/native_tls/
mod.rs

1// Copyright 2015-2021 Benjamin Fry <benjaminfry@me.com>
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// https://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8//! TLS protocol related components for DNS over TLS
9
10pub mod tls_client_stream;
11pub mod tls_stream;
12
13pub use self::tls_client_stream::{TlsClientStream, TlsClientStreamBuilder};
14pub use self::tls_stream::{TlsStream, TlsStreamBuilder};
15
16#[cfg(test)]
17mod tests;