mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Print ODoH DNS stamps
This commit is contained in:
parent
a988eb42a2
commit
4f1e0f2abe
2 changed files with 14 additions and 3 deletions
|
@ -18,7 +18,7 @@ tls = ["libdoh/tls"]
|
|||
[dependencies]
|
||||
libdoh = { path = "src/libdoh", version = "0.4.0", default-features = false }
|
||||
clap = "2.33.3"
|
||||
dnsstamps = "0.1.5"
|
||||
dnsstamps = "0.1.7"
|
||||
jemallocator = "0.3.2"
|
||||
|
||||
[package.metadata.deb]
|
||||
|
|
|
@ -207,10 +207,21 @@ pub fn parse_opts(globals: &mut Globals) {
|
|||
builder = builder.with_address(public_address.to_string());
|
||||
}
|
||||
println!(
|
||||
"Test DNS stamp to reach [{}]: [{}]",
|
||||
"Test DNS stamp to reach [{}] over DoH: [{}]\n",
|
||||
hostname,
|
||||
builder.serialize().unwrap()
|
||||
);
|
||||
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamp.\n")
|
||||
|
||||
let builder =
|
||||
dnsstamps::ODoHTargetBuilder::new(hostname.to_string(), globals.path.to_string());
|
||||
println!(
|
||||
"Test DNS stamp to reach [{}] over Oblivious DoH: [{}]\n",
|
||||
hostname,
|
||||
builder.serialize().unwrap()
|
||||
);
|
||||
|
||||
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamps.\n")
|
||||
} else {
|
||||
println!("Please provide a fully qualified hostname (-H <hostname> command-line option) to get test DNS stamps for your server.\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue