mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 13:37:39 +03:00
Add padding
This commit is contained in:
parent
0fc3a23d04
commit
4cdb23d9fa
1 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,7 @@ use hyper;
|
|||
use tokio;
|
||||
|
||||
mod dns;
|
||||
mod utils;
|
||||
|
||||
use clap::{App, Arg};
|
||||
use futures::future;
|
||||
|
@ -20,6 +21,7 @@ use std::time::Duration;
|
|||
use tokio::net::{TcpListener, UdpSocket};
|
||||
use tokio::prelude::FutureExt;
|
||||
|
||||
const BLOCK_SIZE: usize = 128;
|
||||
const DNS_QUERY_PARAM: &str = "dns";
|
||||
const LISTEN_ADDRESS: &str = "127.0.0.1:3000";
|
||||
const LOCAL_BIND_ADDRESS: &str = "0.0.0.0:0";
|
||||
|
@ -202,6 +204,7 @@ impl DoH {
|
|||
let response = Response::builder()
|
||||
.header(hyper::header::CONTENT_LENGTH, packet_len)
|
||||
.header(hyper::header::CONTENT_TYPE, "application/dns-message")
|
||||
.header("X-Padding", utils::padding_string(packet_len, BLOCK_SIZE))
|
||||
.header(
|
||||
hyper::header::CACHE_CONTROL,
|
||||
format!("max-age={}", ttl).as_str(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue