hickory_proto/h2/mod.rs
1// Copyright 2015-2018 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 HTTPS (DoH)
9
10mod h2_client_stream;
11pub mod h2_server;
12
13pub use crate::http::error::{Error as HttpsError, Result as HttpsResult};
14
15pub use self::h2_client_stream::{
16 HttpsClientConnect, HttpsClientResponse, HttpsClientStream, HttpsClientStreamBuilder,
17};