Fix tls feature

This commit is contained in:
Frank Denis 2019-12-24 12:54:15 +01:00
parent c75ebff959
commit 07088fd0a7
2 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ fn http_error(status_code: StatusCode) -> Result<Response<Body>, http::Error> {
}
#[derive(Clone, Debug)]
struct LocalExecutor {
pub struct LocalExecutor {
runtime_handle: runtime::Handle,
}

View file

@ -1,5 +1,5 @@
use crate::errors::*;
use crate::DoH;
use crate::{DoH, LocalExecutor};
use hyper::server::conn::Http;
use native_tls::{self, Identity};
@ -42,7 +42,7 @@ impl DoH {
self,
tls_acceptor: TlsAcceptor,
mut listener: TcpListener,
server: Http,
server: Http<LocalExecutor>,
) -> Result<(), DoHError> {
let listener_service = async {
while let Some(raw_stream) = listener.incoming().next().await {