mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
temporary->recoverable
This commit is contained in:
parent
a3bb77fa61
commit
eb2e2afb75
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ pub fn rcode(packet: &[u8]) -> u8 {
|
|||
packet[3] & 0x0f
|
||||
}
|
||||
|
||||
pub fn is_temporary_error(packet: &[u8]) -> bool {
|
||||
pub fn is_recoverable_error(packet: &[u8]) -> bool {
|
||||
let rcode = rcode(packet);
|
||||
rcode == DNS_RCODE_SERVFAIL || rcode == DNS_RCODE_REFUSED
|
||||
}
|
||||
|
|
|
@ -302,7 +302,7 @@ impl DoH {
|
|||
return future::err(Error::UpstreamIssue);
|
||||
}
|
||||
packet.truncate(len);
|
||||
let ttl = if dns::is_temporary_error(&packet) {
|
||||
let ttl = if dns::is_recoverable_error(&packet) {
|
||||
err_ttl
|
||||
} else {
|
||||
match dns::min_ttl(&packet, min_ttl, max_ttl, err_ttl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue