From: Hidde van der Heide Date: Tue, 18 May 2021 11:22:06 +0000 (+0200) Subject: Added serial to inbound_xfr arguments X-Git-Tag: v2.2.0rc1~86^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F666%2Fhead;p=thirdparty%2Fdnspython.git Added serial to inbound_xfr arguments --- diff --git a/dns/asyncquery.py b/dns/asyncquery.py index 0e353e8a..c02a4789 100644 --- a/dns/asyncquery.py +++ b/dns/asyncquery.py @@ -356,7 +356,7 @@ async def tls(q, where, timeout=None, port=853, source=None, source_port=0, async def inbound_xfr(where, txn_manager, query=None, port=53, timeout=None, lifetime=None, source=None, - source_port=0, udp_mode=UDPMode.NEVER, + source_port=0, udp_mode=UDPMode.NEVER, serial=0, backend=None): """Conduct an inbound transfer and apply it via a transaction from the txn_manager. diff --git a/dns/query.py b/dns/query.py index bd62a7a3..7cfa16c1 100644 --- a/dns/query.py +++ b/dns/query.py @@ -997,7 +997,7 @@ class UDPMode(enum.IntEnum): def inbound_xfr(where, txn_manager, query=None, port=53, timeout=None, lifetime=None, source=None, - source_port=0, udp_mode=UDPMode.NEVER): + source_port=0, udp_mode=UDPMode.NEVER, serial=0): """Conduct an inbound transfer and apply it via a transaction from the txn_manager.