mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 21:47:39 +03:00
parent
8fbcdfc2a7
commit
10a99040e1
1 changed files with 7 additions and 3 deletions
10
src/main.rs
10
src/main.rs
|
@ -1,11 +1,14 @@
|
||||||
#[global_allocator]
|
#[global_allocator]
|
||||||
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||||
|
|
||||||
|
#[macro_use]
|
||||||
|
extern crate clap;
|
||||||
|
|
||||||
mod dns;
|
mod dns;
|
||||||
mod utils;
|
mod utils;
|
||||||
|
|
||||||
use base64;
|
use base64;
|
||||||
use clap::{App, Arg};
|
use clap::Arg;
|
||||||
use futures::future;
|
use futures::future;
|
||||||
use futures::prelude::*;
|
use futures::prelude::*;
|
||||||
use futures::stream::Stream;
|
use futures::stream::Stream;
|
||||||
|
@ -101,6 +104,7 @@ struct DoH {
|
||||||
inner: Arc<InnerDoH>,
|
inner: Arc<InnerDoH>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
enum Error {
|
enum Error {
|
||||||
Incomplete,
|
Incomplete,
|
||||||
|
@ -489,8 +493,8 @@ fn parse_opts(inner_doh: &mut InnerDoH) {
|
||||||
let max_ttl = MAX_TTL.to_string();
|
let max_ttl = MAX_TTL.to_string();
|
||||||
let err_ttl = ERR_TTL.to_string();
|
let err_ttl = ERR_TTL.to_string();
|
||||||
|
|
||||||
let options = App::new("doh-proxy")
|
let _ = include_str!("../Cargo.toml");
|
||||||
.about("A DNS-over-HTTP server proxy")
|
let options = app_from_crate!()
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("listen_address")
|
Arg::with_name("listen_address")
|
||||||
.short("l")
|
.short("l")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue