Add missing dump_packet() for DNSSEC query retries.

This commit is contained in:
Simon Kelley
2019-10-11 23:30:08 +01:00
parent 04db1483d1
commit e3002bf1a6

View File

@@ -875,6 +875,10 @@ void reply_query(int fd, int family, time_t now)
} }
} }
#ifdef HAVE_DUMPFILE
dump_packet(DUMP_SEC_QUERY, (void *)header, (size_t)plen, NULL, &start->addr);
#endif
while (retry_send(sendto(fd, (char *)header, plen, 0, while (retry_send(sendto(fd, (char *)header, plen, 0,
&start->addr.sa, &start->addr.sa,
sa_len(&start->addr)))); sa_len(&start->addr))));