Implemented consistent SOA serial for internal zones.

This commit is contained in:
Revertron
2021-04-28 20:12:06 +02:00
parent 3c7b81c6dc
commit a4d9a64989
4 changed files with 24 additions and 11 deletions
+1 -2
View File
@@ -145,8 +145,7 @@ impl DnsNetworkClient {
packet.questions.push(DnsQuestion::new(qname.to_string(), qtype));
// Create a return channel, and add a `PendingQuery` to the list of lookups
// in progress
// Create a return channel, and add a `PendingQuery` to the list of lookups in progress
let (tx, rx) = channel();
{
let mut pending_queries = self.pending_queries.lock().map_err(|_| ClientError::PoisonedLock)?;