mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 12:20:00 -04:00
Fix FallbackTooManyRecordsAxfrHandler to follow convention
All the other subclasses AxfrHandler send three messages.
This oversight was inherited from the original Perl implementation of
the server and was not fixed in 46ecbbe where it was rewritten.
This allows refactoring and sharing of the superclass.
This commit is contained in:
parent
5f0b2f255f
commit
93a8079489
1 changed files with 1 additions and 1 deletions
|
|
@ -196,8 +196,8 @@ class TooManyRecordsIxfrHandler(IxfrHandler):
|
|||
|
||||
class FallbackTooManyRecordsAxfrHandler(AxfrHandler):
|
||||
answers = (
|
||||
(soa(3),),
|
||||
(
|
||||
soa(3),
|
||||
ns(),
|
||||
txt("fallback AXFR on too many records"),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue