]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Added serial to inbound_xfr arguments 666/head
authorHidde van der Heide <hvanderheide@nexuz.net>
Tue, 18 May 2021 11:22:06 +0000 (13:22 +0200)
committerHidde van der Heide <hvanderheide@nexuz.net>
Tue, 18 May 2021 11:22:06 +0000 (13:22 +0200)
dns/asyncquery.py
dns/query.py

index 0e353e8ade1d384059ce4cf077b759d6c1443bba..c02a4789d982135e3b4739f4b15aab22275d1206 100644 (file)
@@ -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.
index bd62a7a3963709a3419417087206d05144320e0b..7cfa16c10dd003f01f02387659d4fc0b1e2c1719 100644 (file)
@@ -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.