mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Format
This commit is contained in:
parent
b5d525abcd
commit
651224d900
2 changed files with 4 additions and 7 deletions
|
@ -433,7 +433,8 @@ impl DoH {
|
||||||
.header(
|
.header(
|
||||||
hyper::header::CACHE_CONTROL,
|
hyper::header::CACHE_CONTROL,
|
||||||
format!(
|
format!(
|
||||||
"max-age={ttl}, stale-if-error={STALE_IF_ERROR_SECS}, stale-while-revalidate={STALE_WHILE_REVALIDATE_SECS}"
|
"max-age={ttl}, stale-if-error={STALE_IF_ERROR_SECS}, \
|
||||||
|
stale-while-revalidate={STALE_WHILE_REVALIDATE_SECS}"
|
||||||
)
|
)
|
||||||
.as_str(),
|
.as_str(),
|
||||||
);
|
);
|
||||||
|
|
|
@ -29,9 +29,7 @@ where
|
||||||
let mut reader = BufReader::new(File::open(certs_path).map_err(|e| {
|
let mut reader = BufReader::new(File::open(certs_path).map_err(|e| {
|
||||||
io::Error::new(
|
io::Error::new(
|
||||||
e.kind(),
|
e.kind(),
|
||||||
format!(
|
format!("Unable to load the certificates [{certs_path_str}]: {e}"),
|
||||||
"Unable to load the certificates [{certs_path_str}]: {e}"
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
})?);
|
})?);
|
||||||
rustls_pemfile::certs(&mut reader).map_err(|_| {
|
rustls_pemfile::certs(&mut reader).map_err(|_| {
|
||||||
|
@ -52,9 +50,7 @@ where
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
io::Error::new(
|
io::Error::new(
|
||||||
e.kind(),
|
e.kind(),
|
||||||
format!(
|
format!("Unable to load the certificate keys [{certs_keys_path_str}]: {e}"),
|
||||||
"Unable to load the certificate keys [{certs_keys_path_str}]: {e}"
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
})?
|
})?
|
||||||
.read_to_end(&mut encoded_keys)?;
|
.read_to_end(&mut encoded_keys)?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue