mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Fix tls feature
This commit is contained in:
parent
c75ebff959
commit
07088fd0a7
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue