mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 11:32:05 -04:00
AXFR and IXFR are not yet implemented; reject attempts to use
them. [RT 74]
This commit is contained in:
parent
64b42acc5f
commit
f0558da29c
1 changed files with 4 additions and 0 deletions
|
|
@ -85,6 +85,10 @@ add_type(dns_message_t *message, dns_name_t *name, dns_rdataclass_t rdclass,
|
|||
dns_rdataset_t *rdataset;
|
||||
isc_result_t result;
|
||||
|
||||
if (rdtype == dns_rdatatype_axfr)
|
||||
fatal("sdig does not support AXFR yet");
|
||||
if (rdtype == dns_rdatatype_ixfr)
|
||||
fatal("sdig does not support IXFR yet");
|
||||
rdataset = NULL;
|
||||
result = dns_message_gettemprdataset(message, &rdataset);
|
||||
check_result(result, "dns_message_gettemprdataset()");
|
||||
|
|
|
|||
Loading…
Reference in a new issue