From: Bob Halley Date: Sat, 7 Apr 2012 21:15:56 +0000 (+0100) Subject: add check_origin parameter to dns.zone.from_xfr() X-Git-Tag: v1.10.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d128fe0847580dfeeba06a9b0618edd531619461;p=thirdparty%2Fdnspython.git add check_origin parameter to dns.zone.from_xfr() --- diff --git a/ChangeLog b/ChangeLog index 46064a5f..5ab98387 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ + 2012-04-07 Bob Halley + * dns/zone.py (from_xfr): dns.zone.from_xfr() now takes a + 'check_origin' parameter which defaults to True. If set to + False, then dnspython will not make origin checks on the zone. + Thanks to Carlos Perez for the report. + * dns/rdtypes/ANY/SSHFP.py (SSHFP.from_text): Allow whitespace in the text string. Thanks to Jan Andres for the report and the patch. diff --git a/dns/zone.py b/dns/zone.py index 67c952d3..ac16ad35 100644 --- a/dns/zone.py +++ b/dns/zone.py @@ -817,7 +817,7 @@ def from_file(f, origin = None, rdclass = dns.rdataclass.IN, f.close() return z -def from_xfr(xfr, zone_factory=Zone, relativize=True): +def from_xfr(xfr, zone_factory=Zone, relativize=True, check_origin=True): """Convert the output of a zone transfer generator into a zone object. @param xfr: The xfr generator @@ -826,6 +826,9 @@ def from_xfr(xfr, zone_factory=Zone, relativize=True): It is essential that the relativize setting matches the one specified to dns.query.xfr(). @type relativize: bool + @param check_origin: should sanity checks of the origin node be done? + The default is True. + @type check_origin: bool @raises dns.zone.NoSOA: No SOA RR was found at the zone origin @raises dns.zone.NoNS: No NS RRset was found at the zone origin @rtype: dns.zone.Zone object @@ -851,5 +854,6 @@ def from_xfr(xfr, zone_factory=Zone, relativize=True): for rd in rrset: rd.choose_relativity(z.origin, relativize) zrds.add(rd) - z.check_origin() + if check_origin: + z.check_origin() return z