| History log of /src/external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns3/named.conf.j2 |
| Revision | | Date | Author | Comments |
| 1.1 |
| 29-Jan-2026 |
christos | branches: 1.1.1; Initial revision
|
| 1.1.1.3 |
| 17-Sep-2026 |
christos | Import bind-9.20.29 (previous was 9.20.27)
BIND 9.20.29 Security Fixes [CVE-2026-19668] Prevent excessive CPU use validating crafted DNSSEC responses. a0a61dba9e A malicious authoritative server could serve a securely delegated zone whose DS and DNSKEY records carry many distinct key tags but no valid match, forcing a validating resolver into excessive key-tag matching and high CPU use for every query. BIND now bounds this work with the per-query validation limit (max-validations-per-fetch). [GL #5349]
[CVE-2026-19033] Require a TSIG on every message of incoming zone transfers. 9404cd2b8c BIND 9 used to accept TSIG-signed zone transfers in which some messages were unsigned, and processed those messages before the next signature could vouch for them. It now requires a TSIG on every message of an incoming AXFR or IXFR; all modern nameserver already sign every message, so no change is expected in practice. [GL #6062]
[CVE-2026-77119] Prevent a DNSSEC downgrade of secure delegations via unrelated NSEC3. 3bed9c8e9e A validating resolver could be tricked into treating a secure delegation as unsigned and accepting forged answers for names beneath it, if an attacker could inject responses to its queries. Such forged proofs are now rejected. [GL #6234]
[CVE-2026-19941] Prevent forged DNSSEC-validated NXDOMAIN responses. a36bf58daf A validating resolver could accept a signed NSEC record from an unrelated zone as proof that a wildcard did not exist. An on-path attacker or malicious forwarder controlling a signed zone could therefore forge an authenticated NXDOMAIN response for a name that should resolve through a wildcard. BIND now requires the wildcard-denial and name-nonexistence proofs to be signed by the same zone. [GL #6253]
[CVE-2026-19666] DNS64 with break-dnssec could cause an assertion failure. 4cec4965c4 When a "dns64" statement is configured with "break-dnssec yes" and its "exclude" list matches some but not all of the addresses in an AAAA RRset, named removes the excluded addresses from the answer instead of synthesizing new ones. If the answer being filtered had been cached together with a proof that the queried name does not exist -- which is what a wildcard match produces -- named terminated with an assertion failure. Only recursive resolvers are affected, and only when "break-dnssec yes" is in use; the answer has to come from the cache, so a server that is only authoritative cannot reach this. [GL #6301]
[CVE-2026-19667] Reject negative cache records that do not fit in a dns_rdata_t. dbf08c8581 A single crafted response from a server could make a resolver cache a malformed negative entry and then terminate with an assertion failure when reading it back. Only recursive resolvers are affected, on a default configuration. [GL #6302]
[CVE-2026-19662] Prevent resolver crash with cached DNSSEC proofs. c884cc1ba0 Under certain timing conditions, concurrent recursive queries could cause named to crash when cached DNSSEC NOQNAME proof data was replaced while still in use. Cached proof data is now retained until all queries using it have completed. [GL #6333]
[CVE-2026-75029] Discard repeated SOA, CNAME, and DNAME records when parsing DNS messages. 0d630758c2 A DNS message could carry the same SOA, CNAME, or DNAME record many times, and named kept every copy while parsing it. With name compression those copies took up far more memory internally than in the message itself, and every later processing step had to handle all of them. named now keeps the first copy of such a record and discards identical repeats. [GL #6335]
[CVE-2026-77692] Fix an unauthenticated crash on HTTPS using SIG(0) 5a24401c5c A specifically crafted HTTPS query using SIG(0) as authentication could crash named if the client closes the connection before named actually verifies the signature. This is now fixed. [GL #6343]
[CVE-2026-81736] Cached HTTPS/SVCB aliases could exhaust resolver CPU. 20bbb1639a A recursive resolver that had cached a large set of interlinked HTTPS or SVCB records in alias form could be driven to do an excessive amount of work assembling a single response, because it followed every cached alias target when building the additional section. A client permitted to use recursion, together with an attacker-controlled zone used to plant the records, could repeat small queries to consume enough CPU to delay or deny service to other clients. The amount of additional processing done for one query is now bounded. [GL #6347]
[CVE-2026-76163] Prevent TKEY queries from terminating named without global options. 7645138538 named could terminate unexpectedly when a remote client sent a TKEY query if the configuration did not include a global options statement. This has been fixed. ISC thanks Owais Lone (thesecguy) for reporting the issue. [GL #6357]
[CVE-2026-78301] Out-of-zone records in a zone database could be served as authoritative. 72a10c3a0b When a zone database contained records for names outside the zone -- such as a delegation above the zone apex, left behind by a secondary that had accepted out-of-zone data from its primary -- the server could treat them as authoritative and answer queries for names inside the zone with that out-of-zone data instead of the zone's own. A server that was also a resolver could follow such a delegation and cache the answers of the server it named, affecting names outside the configured zone. Zone database lookups are now confined to names at or below the zone's origin. ISC would like to thank Henrique Pereira for reporting the issue. [GL #6361]
[CVE-2026-80274] Crash on wildcard answers carrying both NSEC and NSEC3 proofs. 0e44451b1a When a wildcard answer arrived with both NSEC and NSEC3 records at the name proving that the queried name does not exist, the resolver could pick different records when caching the answer and when retrieving the proof, depending on the order in which the authoritative server sent them. This could terminate named with an assertion failure, fail the query with SERVFAIL, or serve a denial record other than the one that had been verified. The resolver now caches and serves the same denial record it accepted when the answer was received. ISC would like to thank hythyt for reporting the issue. [GL #6369]
[CVE-2026-81563] Following HTTPS/SVCB aliases could leak resolver cache memory. 3162df369e When a recursive server answered a query for an HTTPS or SVCB record in alias form and the alias target had more than 13 records, the target records were pinned in the cache permanently instead of being released once the answer was sent. A remote party who could make the server follow such aliases to a steady stream of fresh names could grow the cache beyond the configured max-cache-size until the server was unable to resolve unrelated names. The records are now released correctly. ISC would like to thank Samy Medjahed/Ap4sh for reporting the issue. [GL #6374]
New Features Add an agent skill for the isc_job/isc_async/isc_work APIs. fe32990b06 Documents when to use isc_job_run(), isc_async_run() or isc_work_enqueue(), and the contract each one imposes. No functional change. [GL !12561]
Removed Features Remove unused closest encloser proof caching. abd8b5bfd8 BIND used to cache an NSEC3 closest encloser proof alongside positive wildcard answers so that a resolver could re-send it when answering from its cache. That stopped being used in BIND 9.9 (2011), when positive wildcard responses were changed to omit that NSEC3 record -- RFC 5155 requires only the next closer name proof -- and the closest encloser came to be derived during validation instead. The caching code has been unreachable ever since, so this removes it with no change in behaviour. [GL #5803] [GL !12660]
Feature Changes Reject oversized and malformed DNSKEY records up front. 6c22109924 Oversized RSA key material in a DNSKEY record was only rejected after it had been converted, allocating memory proportional to the record size. Such records are now rejected before conversion, as are Ed25519 and Ed448 keys with trailing bytes that were previously silently ignored. [GL #4537] [GL !12560]
Bug Fixes Prevent a crash when using both dns64 and filter-a. bce5d10d18 An assertion failure was possible when using both dns64 and the filter-a plugin simultaneously; this has been fixed. [GL #5979] [GL !12663]
Fix update-policy grant external address passing. b1e955c326 Only TCP client addresses are supposed to be passed to an external handler for the associated update-policy rule, but UDP client addresses were also being passed. This could have caused the external handler to return a result it otherwise wouldn't. This has been fixed. [GL #6061] [GL !12555]
Missing required NSEC3 for delegation not detected. e84ed2e9d7 A missing required NSEC3 record for an insecure delegation in a non OPTOUT range was not being detected. This has been fixed. [GL #6063] [GL !12611]
Tighten EUI48 and EUI48 text parsing. ff50f2cdf1 Malformed EUI48 and EUI64 records could be accepted. This has been fixed. [GL #6082] [GL !12521]
GeoIP ACL state can be stale or wrong after reload. 63baf425b3 named caches GeoIP information after looking it up, but the cached information was not invalidated when the GeoIP database was reloaded, so it could continue to be used. We now invalidate existing cached GeoIP information as part of the reloading process. [GL #6083] [GL !12662]
Honor DNSSEC policy key tag ranges. b82e5834b7 When a DNSSEC policy configured a non-default tag-range, dnssec-keygen and dnssec-ksr could accept generated keys outside that range. Both tools now honor the configured minimum and maximum key tags. [GL #6091] [GL !12549]
Fix double free in mdig when EDNS options are specified. af5bd0b0ff When the default_query is cloned the EDNS options need to be cloned rather than the pointer copied. The old behaviour results in a double free of the options. This has been fixed. [GL #6095] [GL !12661]
Fix a crash when an IXFR falls back to AXFR with updates still pending. e34062bc7e When a secondary zone received an incremental transfer (IXFR) and the primary then caused named to fall back to a full transfer (AXFR) while some of the already-received incremental changes were still waiting to be applied, named could later crash when that transfer finished. The pending changes are now discarded correctly before the AXFR retry. [GL #6114] [GL !12624]
Fix DS requests to parental agents over TLS. 55830d30f6 TLS configuration for parental agents was being ignored when sending DS requests. This has been fixed. [GL #6135] [GL !12613]
Fix a crash when resolving names below a cached DNAME. b94e940f52 A recursive resolver could crash when it answered a query for a name beneath a cached DNAME while that same DNAME record was concurrently refreshed or evicted from the cache. [GL #6182] [GL !12593]
Rndc-confgen -q (quiet) option is documented but doesn't work. 7e4a7ca1a7 The command line parsing in rndc-confgen was broken so rndc-confgen -q did not work. This has been fixed. [GL #6187] [GL !12575]
Enforce query ACLs for redirect zones and searched DLZs. bc69876b2e Queries answered from redirect zones or searched DLZ databases did not consistently honor allow-query and allow-query-on, potentially exposing restricted DNS data to excluded clients or through excluded listening addresses. These ACLs are now enforced before redirect or DLZ data is returned. [GL #6251], #6252 [GL !12646]
Check "asnum" validity in GeoIP ACLs. 28c2bfdc7b We now check the validity of autonomous system (AS) numbers when parsing GeoIP ACLs that use asnum elements at configuration time. asnum values start with an optional case-insensitive "AS" prefix, followed only by decimal digits, with no spaces or other extraneous characters. The value represented cannot exceed 2^32. [GL #6255] [GL !12511]
Prevent crashes while reporting DNSSEC signing statistics. c190514f0a Servers with zone-statistics full could terminate while reporting DNSSEC signing statistics for a zone tracking adding more than four signing keys. [GL #6256] [GL !12674]
Fix various nits in the netmgr code. c28cdad51b The MR consists of couple of small fixes and uncaught errors in the Network Manager. [GL #6257] [GL !12576]
Fix a crash on remote-servers lists that reference themselves. aaae614f9d Since 9.21.16 and 9.20.17, a remote-servers, primaries, masters, or parental-agents list that referenced itself, directly or through another list, made named crash on startup or reconfiguration. Such references are again skipped and the remaining entries in the list are used, as in earlier versions. [GL #6287] [GL !12604]
A record from outside a response policy zone could stop named. d135513b37 A response policy zone transferred from a primary can contain a record whose name lies outside the zone. Such a record could stop named, both when it arrived and again at every startup afterwards, because a secondary keeps it in its own copy of the zone. Records like this are now rejected and logged; previously one could also silently create a policy entry for an unrelated name. [GL #6304] [GL !12543]
"rndc flushtree ." failed to flush the cache. 96e8b585ed rndc flushtree flushes cache data below a specified name. If the name specified is the DNS root, it should fully empty the cache, the same as rndc flush. However, there was a bug causing the command, in that case, to have no effect on the cache at all; this has been fixed. [GL #6308] [GL !12582]
Invalid key-store configuration could abort the DNSSEC tools. 1d796ab072 Invalid configured key-stores named "key-directory" in configuration files could abort the DNSSEC tools. This has been fixed. [GL #6313] [GL !12653]
NSEC signature set could bypass the secure-delegation check. c966177f6c When proving that a delegation is insecure, the validator bounded an NSEC record's authority by the signer of whichever RRSIG happened to come first in the record's signature set, rather than the signature that actually verified. A grandparent NSEC padded with an extra, unverifiable signature could therefore pass the check that keeps such proofs from reaching below a signed child zone. The validator now requires every signature on the NSEC to name the same signer and refuses proofs whose signature set is malformed or larger than max-validations-per-fetch allows. [GL #6321]
Fix a possible nsupdate issue when using GSS-TSIG. 4ddcab2d3c The nsupdate process could terminate unexpectedly when using the GSS-TSIG mode executed with the nsupdate -g option. This has been fixed. [GL #6325] [GL !12588]
Fix isccc_alist_define error paths. af1349552a If there is an out of memory error in isccc_alist_define a memory leak (the sexpr holding the key name) or a double free (value) could occur. This has been fixed. [GL #6329] [GL !12636]
Check for empty 'endpoints' list. 23f58af443 Configuring an http block with endpoints {}; previously caused a crash in named. This is now rejected earlier by the configuration check. [GL #6330] [GL !12552]
Named could crash with a single-element geoip sortlist. 0e996a4d3b If named was configured with a single-element sortlist containing a geoip ACL element, any matching query triggered an assertion failure. This has been fixed. [GL #6342] [GL !12583]
Prevent out-of-bailiwick CNAMEs from evicting cached records. cdedd4acd5 A recursive resolver could remove valid cached records when a DNS response contained an out-of-bailiwick CNAME with the same owner name. Out-of-bailiwick data is now discarded before it can modify the cache. [GL #6345] [GL !12651]
Restore periodic cleanup of stale resolver address data. 356f4013f8 Stale resolver address data could remain cached until memory pressure or an explicit flush. Correct the cleanup interval so it is removed periodically. [GL #6346] [GL !12589]
Fix named-checkconf/named crash with malformed key name. 9f218f6aaf When a primary/remote-server key name was malformed, named-checkconf and named were both crashing (after warning about the invalid key name). This is now fixed. [GL #6362] [GL !12639]
Fix -Wformat-truncation warning in totext_in_wks() f97c2bea40 BIND 9 failed to build with GCC 16 at -O3: rendering a WKS record as text triggered a -Wformat-truncation error, which is fatal in developer builds. The port number is now printed with a 16-bit format specifier, so the compiler can see it always fits the output buffer. [GL !12542]
Fix off-by-one errors caused by magic hardcoded values. 726c6cb795 Fix off-by-one comparinson errors: "named -p http=" dropped the first digit of the given port (for example, "http=8080" selected port 80) and now uses the port as given, and "named-rrchecker -C" compared only part of the "CLASS" prefix when filtering generic class names, which was harmless in practice but is now corrected. [GL !12616]
Hmac_verify() now accepts truncated HMACs only when requested. c81b111496 The hmac_verify() function incorrectly compares only up to 'sig->length' bytes, but the signature and its length should not be trusted, e.g. in case if it comes from a user query. Don't accept signatures which length isn't equal to the expected calculated HMAC length unless it is explicitly requested by the caller, e.g. for truncated TSIG [1] support. [1] https://datatracker.ietf.org/doc/html/rfc8945#name-tsig-truncation -policy [GL !12629]
Prevent resolver crashes while processing DNS over TCP. 81b3b6d89f Recursive resolvers could terminate with an assertion failure while processing DNS responses over TCP under sustained traffic. The failure was observed on resolvers configured globally with forward only; the same transport path is also used by iterative resolution. This has been fixed. [GL !12537]
|
| 1.1.1.2 |
| 29-Aug-2026 |
christos | Import bind-9-20-27 (Previous was bind-9-20-24)
iNotes for BIND 9.20.27# New Features# Disclose active Negative Trust Anchors with Extended DNS Error 33. A Negative Trust Anchor (RFC 7646) turns off DNSSEC validation for a domain, so a name that would normally fail validation resolves instead. named now marks such answers with Extended DNS Error code 33, "Negative Trust Anchor", so operators can see at a glance when a response came back only because an NTA was in effect. [GL #6268] Feature Changes# Speed up RPZ policy zone updates. RPZ updates used to be applied one small step at a time, adding overhead on large policy zones. Updates are now applied as a single batch, improving update performance for large RPZ zones, at the cost of no longer overlapping with concurrent updates. [GL #5787] [GL #6270] Bug Fixes# Ensure NSEC authority does not cross zonecut boundary. When using a cached NSEC record to prove that a delegation is insecure, named now checks that the signer name in the corresponding RRSIG is not above a known secure delegation point. This prevents a signed namespace from being downgraded to insecure using an NSEC record from the grandparent zone. [GL #5967] Treat an unusable NSEC3 chain as a verification failure. When transferring in a mirror zone, DNSSEC verification could incorrectly succeed when the zone had an invalid NSEC3PARAM record, leading to subsequent validation failures. This has been fixed. [GL #6136] Treat non-canonical RPZ prefixes as any other failure. RPZ prefixes that were not encoded in canonical form did not work. They are now handled in the same way as any other encoding error. [GL #6043] Negative caching stopped working with stale-answer-client-timeout set to 0. Negative answers were re-fetched on every query instead of once they actually expired, effectively disabling negative caching. This has been fixed. [GL #6245] An unterminated OpenSSL private-key Label: field could be read past its parser buffer. The Label: field in a .private key file is now checked for length and NUL-termination. Malformed files are rejected. [GL #6193] Restore SMF support on Solaris and illumos. [GL #6096] Fix compilation on GNU/Hurd. [GL #6285] dig +yaml was producing invalid YAML when a lookup failed. When no server could be reached, dig printed its plain-text startup banner ahead of the YAML output, making the result unparsable. dig no longer does this and correctly reflects options such as +nocmd, +short and +yaml, regardless of where they appear on the command line. [GL #1230] Properly prevent TSIG generation command line injection attacks. When key names are generated with rndc-confgen, tsig-keygen and ddns-confgen, special characters must be escaped to ensure that the configuration is parsed correctly. [GL #6071] Fix a potential heap bounds overflow write in dnssec-signzone. It was possible for dnssec-signzone to overflow array bounds while signing. This has been fixed. [GL #6076] Fix crashes on invalid DNSTAP input in dnstap-read. Malformed DNSTAP files could trigger a NULL pointer dereference or an out-of-bounds memory read in dnstap-read. This has been fixed. [GL #6077] [GL #6124]
Notes for BIND 9.20.26# Security Fixes# Correct verification of NSEC3 signer name. (CVE-2026-10723) Previously, named accepted child-zone NSEC3 records where the first label equaled the hash of the parent zone as valid parent-zone closest encloser proofs. This has been fixed. ISC would like to thank Qifan Zhang of Palo Alto Networks for bringing this vulnerability to our attention. [GL #5874] Malformed DNSKEY records could trigger an assertion. (CVE-2026-10822) Previously, dns_name_fromwire() did not honor the record boundary when reading names from the wire, allowing malformed records to be accepted when they should not have been. In particular, malformed DNSKEY records could trigger an assertion failure when being printed. This has been fixed. [GL #6004] Fix handling of RPZ CNAME expansion that returns too-long name. (CVE-2026-11331) Previously, if the expansion of a wildcard CNAME RPZ policy resulted in a name that exceeded the length limit, a self-referential CNAME and the original address record were returned, allowing the policy to be bypassed. In branches up to 9.20 this also left query processing in an inconsistent state, which could trigger an assertion failure. named now returns a YXDOMAIN response, without the address. ISC would like to thank Laith Mash'al (0xmshal) for bringing this vulnerability to our attention. [GL #5856] Prevent excessive validation work from crafted negative responses. (CVE-2026-11605) Previously, a validating resolver could be made to perform a large amount of DNSSEC validation work in response to a single answer, consuming excessive CPU. A malicious authoritative server could trigger this by returning a signed negative answer (NXDOMAIN or NODATA) padded with many denial-of-existence proof records, which the resolver continued to verify beyond its per-query validation limit. It now enforces that limit on negative answers and returns SERVFAIL once the limit is reached. [GL #4463] Prevent cache exhaustion under sustained attack. (CVE-2026-11622) Cache memory could become exhausted with expired entries whose memory was not released, due to a sustained attack on the same DNS name that prevented the cleanup. This has been fixed. [GL #4760] Stop accepting invalid signed wildcard records. (CVE-2026-11721) Signed wildcard responses in which the Labels field in the RRSIG record was less than the number of labels in the Signer Name field were being incorrectly accepted. This in turn broke synth-from-dnssec, which depends on such records being correctly validated. This has been fixed. ISC would like to thank Qifan Zhang of Palo Alto Networks for bringing this vulnerability to our attention. [GL #5871] Do not assert for some specific CNAME and DNAME queries. (CVE-2026-12617) A bug in the resolver's handling of certain cached DNAME and CNAME responses could cause named to trigger an assertion failure and exit. An attacker controlling a domain name and the authoritative DNS server it was hosted on could exploit this behavior to cause a denial-of-service. This has been fixed. ISC would like to thank Qifan Zhang of Palo Alto Networks for bringing this vulnerability to our attention. [GL #5946] Prevent crash from malformed NSEC/NSEC3 response. (CVE-2026-13204) An assertion could be triggered by an improperly signed NOQNAME proof. This has been fixed. ISC would like to thank Qifan Zhang of Palo Alto Networks for bringing this vulnerability to our attention. [GL #5985] Fix DNSSEC validation bypass via out-of-zone NSEC Next Field. (CVE-2026-13321) Previously, a malicious zone with out-of-zone NSEC next-owner names could cause a DNSSEC-validating resolver to cache such a record and, if synth-from-dnssec was enabled, to generate negative answers for any zone that was covered by the range. This has been fixed. ISC would like to thank Qifan Zhang of Palo Alto Networks for bringing this vulnerability to our attention. [GL #5873] Reclaim memory promptly when DNSSEC validations are canceled. When a resolver is flooded with queries that require DNSSEC validation - for example during a random-subdomain attack - many of those validations are canceled before they complete. Previously, a canceled validation still kept its place in the internal work queue and held the associated response in memory until that queued work eventually ran, so memory could climb sharply under sustained load. The internal work queue is now dropped as soon as the validation is canceled, releasing the memory it was holding. [GL #4760] Removed Features# Remove the secondary validator in query.c. Previously, when the additional section of a response was being populated, if cached data was found with pending trust, it would be opportunistically validated. The code implementing this validation was not quite formally correct. Rather than fixing it, the code has been removed: RRsets with pending trust are now omitted from responses. [GL #5966] [GL #5968] [GL #5972] Bug Fixes# Fix a bug in DNS UPDATE processing with inline-signing enabled. In rare cases the named process could terminate unexpectedly when processing authorized DNS UPDATE messages in quick succession that were updating a zone with inline-signing enabled. This has been fixed. [GL #5816] Properly detect private records before copying. Previously, an assertion was triggered when trying to copy a private record to a buffer for modification. named now extends the private type detection and copies the contents after rejecting invalid private records. [GL #5857] Tighten referral DS acceptance. Previously, named accepted DS records for sibling zones when it shouldn't have. This has been fixed. [GL #5870] Don't synthesize negative responses with pending NSEC. If an NSEC record has not yet been validated and is cached with trust pending, named no longer uses it to synthesize negative responses. [GL #5872] [GL #5887] [GL #5977] Check that an NSEC signer is at or above the name to be validated. A check has been added to ensure that an NSEC record being used as a proof of nonexistence for a given name is not signed by a name lower in the DNS hierarchy than the one in question. [GL #5876] Don't evict DNSSEC-validated cache data on a CD=1 NXDOMAIN. When a client sent a query with the checking-disabled (CD) bit set and the answer was NXDOMAIN, the resolver cached that unvalidated negative response and discarded any DNSSEC-validated records it already held for the same name, even though the validated data was more trustworthy. A single such response - including a forged one - could flush validated records from the cache and force the resolver to fetch them again. The resolver now checks the trust level of the existing data first and leaves the cache unchanged when it is already validated. [GL #5877] Fix a deny-answer-aliases configuration bypass issue. It was possible to use a maliciously crafted authoritative zone to make a named resolver synthesize a DNAME "alias" that should have been rejected by the configured deny-answer-aliases option. This has been fixed. [GL #5930] Reject external referrals from forwarders. Under a forward first; policy in a forwarding zone, named could accept NS records above the forward zone apex from negative responses. This has been fixed. [GL #5937] Fix a zone transfer over TLS (XoT) issue when using the opportunistic TLS mode. The named process, running as a secondary DNS server and configured to transfer a zone from a primary server using an encrypted XoT transport in opportunistic TLS mode (i.e. without peer certificate/hostname validation), could terminate unexpectedly when the TLS ALPN negotiation with the primary server was unsuccessful. This has been fixed. [GL #5957] Unvalidated opt-out NSEC3 could be accepted in insecurity proof. When determining whether an insecure delegation was legitimate, NSEC3 opt-out records which had not yet passed validation could be used. This has been fixed. [GL #5970] Check wildcard signer and NOQNAME signer match. A positive wildcard answer, and the NSEC3 proof that the requested name doesn't exist in the zone, must both be from the same zone. Otherwise, an NSEC3 from an ancestor zone could be used to interfere with validation. named now retrieves the signer name from a wildcard response's signature. An NSEC3 record cannot be used as a NOQNAME proof for the wildcard unless it exactly matches the name one level above the NSEC3. [GL #5971] Fix CNAME resolution failure caused by a cached SERVFAIL response. Under certain circumstances, a cached SERVFAIL response could incorrectly prevent successful resolution of a CNAME target. This could cause resolution failures to persist until the cached SERVFAIL entry expired, even when the CNAME target itself was otherwise resolvable. This has been fixed. [GL #5983] Reject unsupported RSA DNSKEY shapes during DNSSEC validation. An authoritative server publishing an RSA DNSKEY with an unusually large modulus or an exotic public exponent could make each DNSSEC signature check on a validating recursive resolver noticeably more expensive than for a normally sized key. Such DNSKEYs are now treated as invalid. [GL #6008] Fix a bug in GeoIP2 string matching. When using GeoIP2 ACLs (see acl), named could incorrectly match a name using a sub-string instead of the full name match. This has been fixed. [GL #6019] Fix DNS-over-HTTPS (DoH) quota configuration issue. The http-listener-clients and http-streams-per-connection configuration options could be truncated to smaller values (or to 0, which means unlimited) when very large configuration values in excess of 65535 were used. It is very unlikely that such large values were used in production, and the default values for the affected options are 300 and 100, respectively. This has been fixed. [GL #6021] Truncated reply to a TSIG query no longer stalls the resolver. When an upstream server returned a truncated reply to a query that named had signed with TSIG, the resolver could keep waiting for a follow-up UDP packet that never arrived, stalling the query until it hit the resolver-query-timeout and the client received no answer. named now treats any reply it cannot authenticate as an immediate failure and returns SERVFAIL right away as a defense in depth. [GL #6028] Ignore updates removing DNSKEY RRset with class ANY. When a dynamic update is received that removes the DNSKEY (or CDNSKEY, or CDS) RRset, named now removes all records except the ones that are in use for signing the zone. [GL #6045] Ignore 0-byte reads in the TCP read callback. Callbacks for libuv stream reads do not signal zero-length reads as a failure signal but rather as EAGAIN/EWOULDBLOCK. This could trigger an assertion when a zero-length read was pushed onto a PROXYv2 endpoint that had not yet processed the headers, as it expected a non-NULL region of positive length. [GL #6140] Only print per-zone glue stats when zone-statistics is set to full. The code printing query statistics was ignoring the zone-statistics option. This has been fixed. [GL #6164] CDS/CDNSKEY records were not removed when re-configuring the server. When on an rndc reconfig the DNSSEC policy changes such that it changes the expected CDNSKEY and/or CDS records in the zone, the RRset should be updated accordingly. This did not happen when removing digests from the configuration, or setting cdnskey no;. This has been fixed. [GL #6166] Fix a crash when querying an empty non-terminal in a wildcard zone in RBTDB. A query for an empty non-terminal in a wildcard zone served from the RBT zone database could abort named with an assertion failure. It now returns the correct NODATA answer. [GL #6170] Stop reusing outgoing TCP connections the peer has already closed. Previously, named could hand a new query to an idle forwarder/upstream TCP or TLS connection that the peer had already closed, causing the query to fail (and CLOSE-WAIT sockets to pile up). Idle reused connections are now watched, so a close is noticed and the connection is dropped instead of reused. A new tcp-reuse-timeout option controls how long an idle outgoing connection is kept open for reuse (default 5 seconds). [GL #6171] Fix DNSSEC validation failures for names under an apex DNAME. DNSSEC validation could fail with SERVFAIL for names covered by a DNAME at the apex of a signed zone, unless the zone's keys were already validated in the cache. This regression was introduced by the recent fix for resolver stalls on CNAME responses to DS queries, and has now been addressed. [GL #6176]
Notes for BIND 9.20.25# Note The BIND 9.20.25 release was withdrawn after the discovery of a regression in a security fix in it during pre-release testing.
|
| 1.1.1.1 |
| 29-Jan-2026 |
christos | branches: 1.1.1.1.2; Import bind-9.20.18 (previous was 9.20.11)
BIND 9.20.18#
Security Fixes#
[CVE-2025-13878] Fix incorrect length checks for BRID and HHIT records. d4c0d61701
Malformed BRID and HHIT records could trigger an assertion failure. This has been fixed.
ISC would like to thank Vlatko Kosturjak from Marlink Cyber for bringing this vulnerability to our attention. [GL #5616]
Feature Changes#
Support compilation with cmocka 2.0.0+ bb9234c6ce
The assert_in_range() function was deprecated in favor of assert_int_in_range() and assert_uint_in_range(). Add compatibility shims for cmocka<2.0.0 and use the new functions. [GL #5699] [GL !11437]
Add more information to the rndc recursing output about fetches. 9766feb4df
This adds more information about the active fetches for debugging and diagnostic purposes. [GL !11358]
Bug Fixes#
Make key rollovers more robust. 7a70d05b5d
A manual rollover when the zone is in an invalid DNSSEC state causes predecessor keys to be removed too quickly. Additional safeguards to prevent this have been added. DNSSEC records will not be removed from the zone until the underlying state machine has moved back into a valid DNSSEC state. [GL #5458] [GL !11329]
Fix a catalog zones issue when a member zone could fail to load. 95cbc2c327
A catalog zone's member zone could fail to load in some rare cases, when the internally generated zone configuration string was exceeding 512 bytes. That condition only was not enough for the issue to arise, but it was a necessary condition. This could happen, for example, if the catalog zone's default primary servers list contained a large number of items. This has been fixed. [GL #5658] [GL !11349]
Allow glue in delegations with QTYPE=ANY. 441158ac18
When a query for type ANY triggered a delegation response, all additional data was omitted from the response, including mandatory glue. This has been corrected. [GL #5659] [GL !11283]
Adding NSEC3 opt-out records could leave invalid records in chain. 1b90296e1f
When creating an NSEC3 opt-out chain, a node in the chain could be removed too soon, causing the previous NSEC3 being unable to be found, resulting in invalid NSEC3 records to be left in the zone. This has been fixed. [GL #5671] [GL !11340]
Fix slow speed of NSEC3 optout large delegation zone signing. 88f915b77b
BIND 9.20 takes much more time signing a large delegation zone with NSEC3 optout compared to version 9.18. This has been restored. [GL #5672] [GL !11362]
Reconfigure NSEC3 opt-out zone to NSEC causes zone to be invalid. 1d0e19c612
A zone that is signed with NSEC3, opt-out enabled, and then reconfigured to use NSEC, causes the zone to be published with missing NSEC records. This has been fixed. [GL #5679] [GL !11401]
Fix a possible catalog zone issue during reconfiguration. 911b45b2b3
The named process could terminate unexpectedly during reconfiguration when a catalog zone update was taking place at the same time. This has been fixed. [GL !11386]
Fix the charts in the statistics channel. 7c7b01dd65
The charts in the statistics channel could sometimes fail to render in the browser, and were completely disabled for Mozilla-based browsers for historical reasons. This has been fixed. [GL !11364]
BIND 9.20.17#
New Features#
Add spatch to detect implicit bool/int/result cast. 02be363d1f
Detection of implicit cast from a boolean into an int, or an isc_result_t into a boolean (either in an assignement or return position).
If such pattern is found, a warning comment is added into the code (and the CI will fails) so the error can be spotted and manually fixed. [GL !11237]
Feature Changes#
Use atomics for CMM_{LOAD,STORE}_SHARED with ThreadSanitizer. 94fa721705
Upstream has removed the atomics implementation of CMM_LOAD_SHARED and CMM_STORE_SHARED as these can be used also with non-stdatomics types. As we only use the CMM api with stdatomics types, we can restore the previous behaviour to prevent ThreadSanitizer warnings. [GL #5660] [GL !11290]
Provide more information when the memory allocation fails. 6749725610
Provide more information about the failure when the memory allocation fails. [GL !11304]
Reduce the number of outgoing queries. 457b470e96
Reduces the number of outgoing queries when resolving the nameservers for delegation points. This helps the DNS resolver with cold cache resolve client queries with complex delegation chains and redirections. [GL !11258]
Bug Fixes#
Fix the spurious timeouts while resolving names. d96cf874fb
Sometimes the loops in the resolving (e.g. to resolve or validate ns1.example.com we need to resolve ns1.example.com) were not properly detected leading to spurious 10 seconds delay. This has been fixed and such loops are properly detected. [GL #3033], #5578 [GL !11298]
Fix bug where zone switches from NSEC3 to NSEC after retransfer. 3b40ffbf83
When a zone is re-transferred, but the zone journal on an inline-signing secondary is out of sync, the zone could fall back to using NSEC records instead of NSEC3. This has been fixed. [GL #5527] [GL !11274]
Attach socket before async streamdns_resume_processing. bb9451c73f
Call to streamdns_resume_processing is asynchronous but the socket passed as argument is not attached when scheduling the call.
While there is no reproducible way (so far) to make the socket reference number down to 0 before streamdns_resume_processing is called, attach the socket before scheduling the call. This guard against an hypothetic case where, for some reasons, the socket refcount would reach 0, and be freed from memory when streamdns_resume_processing is called. [GL #5620] [GL !11260]
AMTRELAY type 0 presentation format handling was wrong. adf104a063
RFC 8777 specifies a placeholder value of "." for the gateway field when the gateway type is 0 (no gateway). This was not being checked for nor emitted when displaying the record. This has been corrected.
Instances of this record will need the placeholder period added to them when upgrading. [GL #5639] [GL !11255]
Fix parsing bug in remote-servers with key or tls. d9400c5967
The remote-servers clause enable the following pattern using a named server-list:
remote-servers a { 1.2.3.4; ... }; remote-servers b { a key foo; };
However, such configuration was wrongly rejected, with an "unexpected token 'foo'" error. Such configuration is now accepted. [GL #5646] [GL !11300]
Fix TLS contexts cache object usage bug in the resolver. 13adf94006
named could terminate unexpectedly when reconfiguring or reloading, and if client-side TLS transport was in use (for example, when forwarding queries to a DoT server). This has been fixed. [GL #5653] [GL !11299]
Fix unitiailized pointer check on getipandkeylist. 5ed0cf091b
Function named_config_getipandkeylist could, in case of error in the early code attempting to get the port or tls-port, make a pointer check on a non-initialized value. This is now fixed. [GL !11306]
Standardize CHECK and RETERR macros. ef714e91ac
previously, there were over 40 separate definitions of CHECK macros, of which most used "goto cleanup", and the rest "goto failure" or "goto out". there were another 10 definitions of RETERR, of which most were identical to CHECK, but some simply returned a result code instead of jumping to a cleanup label.
this has now been standardized throughout the code base: RETERR is for returning an error code in the case of an error, and CHECK is for jumping to a cleanup tag, which is now always called "cleanup". both macros are defined in isc/util.h. [GL !11069]
Adding NSEC3 opt-out records could leave invalid records in chain. 1d83a8ad46
When creating an NSEC3 opt-out chain, a node in the chain could be removed too soon, causing the previous NSEC3 being unable to be found, resulting in invalid NSEC3 records to be left in the zone. This has been fixed.
Closes [#5671](#5671)
BIND 9.20.16#
Feature Changes#
Fix assertion failure from arc4random_uniform with invalid limit. 1040282de7e
When the arc4random_uniform() is called on NetBSD with upper_bound that makes no sense statistically (0 or 1), the call crashes the calling program. Fix this by returning 0 when upper bound is < 2 as does Linux, FreeBSD and NetBSD. (Hint: System CSPRNG should never crash.) [GL #5596] [GL !11151]
Bug Fixes#
Fix dnssec-keygen key collision checking for KEY rrtype keys. ac8b23b80bf
The dnssec-keygen utility program failed to detect possible Key ID collisions with the existing keys generated using the non-default -T KEY option (e.g. for SIG(0)). This has been fixed. [GL #5506] [GL !11128]
Fix shutdown INSIST in dns_dispatchmgr_getblackhole. f0aaaef166c
Previously, named could trigger an assertion in dns_dispatchmgr_getblackhole while shutting down. This has been fixed. [GL #5525] [GL !11162]
Dnssec-verify now uses exit code 1 when failing due to illegal options. 6ead0aa4a2b
Previously, dnssec-verify exited with code 0 if the options could not be parsed. This has been fixed. [GL #5574] [GL !11129]
Prevent assertion failures of dig when server is specified before the -b option. deada63e2b2
Previously, dig could exit with an assertion failure when the server was specified before the dig -b option. This has been fixed. [GL #5609] [GL !11204]
Skip unsupported algorithms when looking for signing key. c346fe88a1b
A mix of supported and unsupported DNSSEC algorithms in the same zone could have caused validation failures. Ignore the DNSSEC keys with unsupported algorithm when looking for the signing keys. [GL #5622] [GL !11210]
Fix configuration bugs involving global defaults. a85d6fb581c
The configuration code for the max-cache-size, dnssec-validation, and response-padding options were unnecessarily complicated, and in the case of max-cache-size, buggy. These have been fixed. The optionmaps variable in configure_view() is no longer needed and has been removed. [GL !11172]
Skip buffer allocations if not logging. 4f601175bd0
Currently, during IXFR we allocate a 2KB buffer for IXFR change logging regardless of the log level. This commit introduces an early check on the log level in dns_diff_print to avoid this.
Results in a speedup from 28% in the test case from issue #5442. [GL !11192]
BIND 9.20.15#
Security Fixes#
[CVE-2025-8677] DNSSEC validation fails if matching but invalid DNSKEY is found. 0d676bf9f23
Previously, if a matching but cryptographically invalid key was encountered during DNSSEC validation, the key was skipped and not counted towards validation failures. named now treats such DNSSEC keys as hard failures and the DNSSEC validation fails immediately, instead of continuing with the next DNSKEYs in the RRset.
ISC would like to thank Zuyao Xu and Xiang Li from the All-in-One Security and Privacy Laboratory at Nankai University for bringing this vulnerability to our attention. [GL #5343]
[CVE-2025-40778] Address various spoofing attacks. 23de94fd236
Previously, several issues could be exploited to poison a DNS cache with spoofed records for zones which were not DNSSEC-signed or if the resolver was configured to not do DNSSEC validation. These issues were assigned CVE-2025-40778 and have now been fixed.
As an additional layer of protection, named no longer accepts DNAME records or extraneous NS records in the AUTHORITY section unless these are received via spoofing-resistant transport (TCP, UDP with DNS cookies, TSIG, or SIG(0)).
ISC would like to thank Yuxiao Wu, Yunyi Zhang, Baojun Liu, and Haixin Duan from Tsinghua University for bringing this vulnerability to our attention. [GL #5414]
[CVE-2025-40780] Cache-poisoning due to weak pseudo-random number generator. 34af35c2df8
It was discovered during research for an upcoming academic paper that a xoshiro128** internal state can be recovered by an external 3rd party, allowing the prediction of UDP ports and DNS IDs in outgoing queries. This could lead to an attacker spoofing the DNS answers with great efficiency and poisoning the DNS cache.
The internal random generator has been changed to a cryptographically secure pseudo-random generator.
ISC would like to thank Prof. Amit Klein and Omer Ben Simhon from Hebrew University of Jerusalem for bringing this vulnerability to our attention. [GL #5484]
New Features#
Add dnssec-policy keys configuration check to named-checkconf. 1f5a0405f72
A new option -k is added to named-checkconf that allows checking the dnssec-policy keys configuration against the configured key stores. If the found key files are not in sync with the given dnssec-policy, the check will fail.
This is useful to run before migrating to dnssec-policy. [GL #5486] [GL !11011]
Feature Changes#
Minor refactor of dst code. c6acbaa020b
Convert the defines to enums. Initialize the tags more explicitly and less ugly. [GL !11038]
Bug Fixes#
Use signer name when disabling DNSSEC algorithms. 986816baa74
disable-algorithms could cause DNSSEC validation failures when the parent zone was signed with the algorithms that were being disabled for the child zone. This has been fixed; disable-algorithms now works on a whole-of-zone basis.
If the zone's name is at or below the disable-algorithms name the algorithm is disabled for that zone, using deepest match when there are multiple disable-algorithms clauses. [GL #5165] [GL !11014]
Rndc sign during ZSK rollover will now replace signatures. d2f551140cd
When performing a ZSK rollover, if the new DNSKEY is omnipresent, the rndc sign command now signs the zone completely with the successor key, replacing all zone signatures from the predecessor key with new ones. [GL #5483] [GL !11017]
Missing DNSSEC information when CD bit is set in query. 968a6be41fb
The RRSIGs for glue records were not being cached correctly for CD=1 queries. This has been fixed. [GL #5502] [GL !10956]
Preserve cache when reload fails and reload the server again. 975aeda10b4
Fixes an issue where failing to reconfigure/reload the server would prevent to preserved the views caches on the subsequent server reconfiguration/reload. [GL #5523] [GL !10988]
Check plugin config before registering. e2260b80702
In named_config_parsefile(), when checking the validity of named.conf, the checking of plugin correctness was deliberately postponed until the plugin is loaded and registered. However, the checking was never actually done: the plugin_register() implementation was called, but plugin_check() was not.
ns_plugin_register() (used by named) now calls the check function before the register function, and aborts if either one fails. ns_plugin_check() (used by named-checkconf) calls only the check function. [GL !11032]
BIND 9.20.14#
Note
The BIND 9.20.14 release was withdrawn after the discovery of a regression in a security fix in it during pre-release testing. BIND 9.20.13# New Features#
Add manual mode configuration option to dnsec-policy. 1e435b107f
Add a new option manual-mode to dnssec-policy. The intended use is that if it is enabled, it will not automatically move to the next state transition, but instead the transition is logged. Only after manual confirmation with rndc dnssec -step the transition is made. [GL #4606] [GL !10880]
Add a new 'servfail-until-ready' configuration option for RPZ. 925af17d21
By default, when named is started it may start answering to queries before the response policy zones are completely loaded and processed. This new feature gives an option to the users to tell named that incoming requests should result in SERVFAIL answer until all the response policy zones are processed and ready. Note that if one or more response policy zones fail to load, named starts responding to queries according to those zones that did load.
Note, that enabling this option has no effect when a DNS Response Policy Service (DNSRPS) interface is used. [GL #5222] [GL !10889]
Support for parsing HHIT and BRID records has been added. 1f051af24d
[GL #5444] [GL !10932]
Removed Features#
Deprecate the "tkey-gssapi-credential" statement. b239a70cac
The tkey-gssapi-keytab statement allows GSS-TSIG to be set up in a simpler and more reliable way than using the tkey-gssapi-credential statement and setting environment variables (e.g. KRB5_KTNAME). Therefore, the tkey-gssapi-credential statement has been deprecated; tkey-gssapi-keytab should be used instead.
For configurations currently using a combination of both tkey-gssapi-keytab and tkey-gssapi-credential, the latter should be dropped and the keytab pointed to by tkey-gssapi-keytab should now only contain the credential previously specified by tkey-gssapi-credential. [GL #4204] [GL !10924]
Obsolete the "tkey-domain" statement. 9352ae65d7
Mark the tkey-domain statement as obsolete, since it has not had any effect on server behavior since support for TKEY Mode 2 (Diffie-Hellman) was removed (in BIND 9.20.0). [GL #4204] [GL !10926]
Feature Changes#
Update clang-format style with options added in newer versions. 0c2c477c31
Add and apply InsertBraces statement to add missing curly braces around one-line statements and use ControlStatementsExceptControlMacros for SpaceBeforeParens to remove space between foreach macro and the brace, e.g. FOREACH (x) { becomes FOREACH(x) {. [GL !10864]
Bug Fixes#
Ensure file descriptors 0-2 are in use. 35dee6eb90
libuv expect file descriptors <= STDERR_FILENO are in use. otherwise, it may abort when closing a file descriptor it opened. [GL #5226] [GL !10908]
Prevent spurious SERVFAILs for certain 0-TTL resource records. 6b266b222c
Under certain circumstances, BIND 9 can return SERVFAIL when updating existing entries in the cache with new NS, A, AAAA, or DS records with 0-TTL. [GL #5294] [GL !10898]
Use DNS_RDATACOMMON_INIT to hide branch differences. a64df9729b
Initialization of the common members of rdata type structures varies across branches. Standardize it by using the DNS_RDATACOMMON_INIT macro for all types, so that new types are more likely to use it, and hence backport more cleanly. [GL #5467] [GL !10834]
RPZ canonical warning displays zone entry incorrectly. d833676515
When an IPv6 rpz prefix entry is entered incorrectly the log message was just displaying the prefix rather than the full entry. This has been corrected. [GL #5491] [GL !10930]
Fix a catalog zone issue when having an unset 'default-primaries' configuration clause. 293e75af28
A catalog zone with an unset default-primaries clause could cause an unexpected termination of the named process after two reloading or reconfiguration commands. This has been fixed. [GL #5494] [GL !10905]
Add and use __attribute__((nonnull)) in dnssec-signzone.c. a8eed36d3e
Clang 20 was spuriously warning about the possibility of passing a NULL file pointer to fprintf(), which uses the 'nonnull' attribute. To silence the warning, the functions calling fprintf() have been marked with the same attribute to assure that NULL can't be passed to them in the first place.
Close #5487 [GL !10913]
RPZ 'servfail-until-ready': skip updating SERVFAIL cache. af2fb26325
In order to not pollute the SERVFAIL cache with the configured SERVFAIL answers while RPZ is loading, set the NS_CLIENTATTR_NOSETFC attribute for the client. [GL !10940]
BIND 9.20.12#
New Features#
Support for parsing the DSYNC record has been added. f440fe712d
[GL #5440] [GL !10820]
Feature Changes#
Adaptive memory allocation strategy for qp-tries. 9a046cbed5
qp-tries allocate their nodes (twigs) in chunks to reduce allocator pressure and improve memory locality. The choice of chunk size presents a tradeoff: larger chunks benefit qp-tries with many values (as seen in large zones and resolvers) but waste memory in smaller use cases.
Previously, our fixed chunk size of 2^10 twigs meant that even an empty qp-trie would consume 12KB of memory, while reducing this size would negatively impact resolver performance.
This MR implements an adaptive chunking strategy that tracks the size of the most recently allocated chunk and doubles the chunk size for each new allocation until reaching a predefined maximum.
This approach effectively balances memory efficiency for small tries while maintaining the performance benefits of larger chunk sizes for bigger data structures. [GL #5445] [GL !10804]
Add deprecation warnings for RSASHA1, RSASHA1-NSEC3SHA1 and DS digest type 1. 5aefaa4b97
RSASHA1 and RSASHA1-NSEC-SHA1 DNSKEY algorithms have been deprecated by the IETF and should no longer be used for DNSSEC. DS digest type 1 (SHA1) has also been deprecated. Validators are now expected to treat these algorithms and digest as unknown, resulting in some zones being treated as insecure when they were previously treated as secure. Warnings have been added to named and tools when these algorithms and this digest are being used for signing.
Zones signed with RSASHA1 or RSASHA1-NSEC-SHA1 should be migrated to a different DNSKEY algorithm.
Zones with DS or CDS records with digest type 1 (SHA1) should be updated to use a different digest type (e.g. SHA256) and the digest type 1 records should be removed.
Related to #5358 [GL !10738]
Bug Fixes#
Stale RRsets in a CNAME chain were not always refreshed. ed37c7825e
With serve-stale enabled, a CNAME chain that contains a stale RRset, the refresh query doesn't always properly refresh the stale RRsets. This has been fixed. [GL #5243] [GL !10767]
Add RPZ extended DNS error for zones with a CNAME override policy configured. 39ad2016c1
When the zone is configured with a CNAME override policy, or the response policy zone contains a wildcard CNAME, the extended DNS error code was not added. This has been fixed. [GL #5342] [GL !10819]
Fix a possible crash when adding a zone while recursing. 7a3ec8dd94
A query for a zone that was not yet loaded may yield an unexpected result such as a CNAME or DNAME, triggering an assertion failure. This has been fixed. [GL #5357] [GL !10718]
Fix dig issues. 8c50819aa8
When used with the +keepopen option with a TCP connection, iscman:dig could terminate unexpectedly in rare situations. Additionally, iscman:dig could hang and fail to shutdown properly when interrupted during a query. These have been fixed. [GL #5381] [GL !10727]
Log dropped or slipped responses in the query-errors category. 47470b586d
Responses which were dropped or slipped because of RRL (Response Rate Limiting) were logged in the rate-limit category instead of the query-errors category, as documented in ARM. This has been fixed. [GL #5388] [GL !10725]
Separate out adbname type flags. fc689c6525
There are three adbname flags that are used to identify different types of adbname lookups when hashing rather than using multiple hash tables. Separate these to their own structure element as these need to be able to be read without locking the adbname structure. [GL #5404] [GL !10695]
Synth-from-dnssec was not working in some scenarios. bc54f059e0
Aggressive use of DNSSEC-Validated cache with NSEC was not working in scenarios when no parent NSEC was not in cache. This has been fixed. [GL #5422] [GL !10754]
Clean enough memory when adding new ADB names/entries under memory pressure. b7e7923daa
The ADB memory cleaning is opportunistic even when we are under memory pressure (in the overmem condition). Split the opportunistic LRU cleaning and overmem cleaning and make the overmem cleaning always cleanup double of the newly allocated adbname/adbentry to ensure we never allocate more memory than the assigned limit. [GL !10707]
Prevent spurious validation failures. 3b98c7cc9d
Under rare circumstances, validation could fail if multiple clients simultaneously iterated the same set of signatures.
References #3014 [GL !10815]
Rename variable called 'free' to prevent the clash with free() 7f25d92c5d
[GL !10757]
|
| 1.1.1.1.2.2 |
| 07-May-2026 |
martin | Pull up the following, requested by christos in ticket #269:
external/mpl/bind//dist/bin/tests/convert_trs_to_junit.py up to external/mpl/bind//dist/bin/tests/system/acl/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns2/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns2/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/acl/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/requirements.txt up to external/mpl/bind//dist/bin/tests/system/re_compile_checker.py up to external/mpl/bind//dist/bin/tests/system/ksr/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/multisigner/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/multisigner/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/multisigner/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/multisigner/tests_multisigner.py up to external/mpl/bind//dist/bin/tests/system/proxy/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/proxy/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns1/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns1/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/additional/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/addzone/tests_rndc_modzone_without_add.py up to external/mpl/bind//dist/bin/tests/system/autosign/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/autosign/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/autosign/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/autosign/ns3/nsec-only.conf.j2 up to external/mpl/bind//dist/bin/tests/system/autosign/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/autosign/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named6.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns2/named7.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/catz/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/chain/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/chain/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/chain/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/chain/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf/bad-remote-servers-key.conf up to external/mpl/bind//dist/bin/tests/system/checkconf/bad-remote-servers-tls.conf up to external/mpl/bind//dist/bin/tests/system/checkconf/good-remote-servers-named.conf up to external/mpl/bind//dist/bin/tests/system/checkconf/kasp-deprecated-fips.conf up to external/mpl/bind//dist/bin/tests/system/checkconf/kasp-deprecated.conf up to external/mpl/bind//dist/bin/tests/system/checkconf/good-key-view.conf up to external/mpl/bind//dist/bin/tests/system/checkds/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns10/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkds/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.cds-sha1.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-cname-and-amtrelay.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-tsig.db.j2 up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.digest-sha1.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.ds-alg.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.key-alg.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.nsec3rsasha1.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/warn.deprecated.rsasha1.db up to external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-nsec3-length.db up to external/mpl/bind//dist/bin/tests/system/cookie/ans10/ans.py up to external/mpl/bind//dist/bin/tests/system/cookie/cookie_ans.py up to external/mpl/bind//dist/bin/tests/system/_common/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns_import_checker.py up to external/mpl/bind//dist/bin/tests/system/allow_query/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/controls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/generic.db up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named02.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named03.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named04.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named05.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named06.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named07.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named08.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named09.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named10.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named11.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named12.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named21.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named22.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named23.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named24.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named25.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named26.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named27.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named28.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named29.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named30.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named31.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named32.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named33.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named34.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named40.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named53.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named54.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named55.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named56.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns2/named57.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/tests.sh up to external/mpl/bind//dist/bin/tests/system/allow_query/tests_sh_allow_query.py up to external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named.args up to external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/allow_query/ns3/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dialup/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dialup/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dialup/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/digdelv/ans4/ans.py up to external/mpl/bind//dist/bin/tests/system/digdelv/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/digdelv/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/digdelv/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/digdelv/ans5/ans.py up to external/mpl/bind//dist/bin/tests/system/digdelv/ans6/ans.py up to external/mpl/bind//dist/bin/tests/system/digdelv/ans7/ans.py up to external/mpl/bind//dist/bin/tests/system/dlzexternal/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns1/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dns64/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns3/badalg.secure.example.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec/ns3/template.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec/ns3/zonecut.ent.secure.example.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec/ans10/inprogress.db up to external/mpl/bind//dist/bin/tests/system/dnssec/ans10/nsec-rrsigs-stripped.db up to external/mpl/bind//dist/bin/tests/system/dnstap/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dsdigest/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dsdigest/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dsdigest/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dsdigest/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ans.py up to external/mpl/bind//dist/bin/tests/system/ecdsa/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ecdsa/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ecdsa/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/eddsa/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/eddsa/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/eddsa/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ans4/ans.py up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-algorithm.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-default-algorithm.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-default-kz.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-keystore.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-length.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-missing-keyfile.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-role.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-superfluous-keyfile.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/bad-tagrange.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/setup.sh up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/template.db.in up to external/mpl/bind//dist/bin/tests/system/checkconf_keys/tests_checkconf_keys.py up to external/mpl/bind//dist/bin/tests/system/forward/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns2/named-tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns4/named-tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns10/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns9/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns9/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns9/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/forward/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/cipher_suites/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/cipher_suites/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/cipher_suites/prereq.sh up to external/mpl/bind//dist/bin/tests/system/cipher_suites/self-signed-cert.pem up to external/mpl/bind//dist/bin/tests/system/cipher_suites/self-signed-key.pem up to external/mpl/bind//dist/bin/tests/system/cipher_suites/setup.sh up to external/mpl/bind//dist/bin/tests/system/cipher_suites/tests_cipher_suites.py up to external/mpl/bind//dist/bin/tests/system/cipher_suites/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/cipher_suites/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/cipher_suites/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/glue/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named10.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named11.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named12.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named6.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named7.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named8.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named9.conf.j2 up to external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns5/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/inline/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ixfr/ans2/ans.py up to external/mpl/bind//dist/bin/tests/system/ixfr/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ixfr/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ixfr/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ixfr/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns10/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/legacy/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.inc.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plain.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plainlog.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.ts.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.unlimited.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.vers.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.pipe.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.abspath.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.dir.conf.j2 up to external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.sym.conf.j2 up to external/mpl/bind//dist/bin/tests/system/masterformat/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/masterformat/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/masterformat/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mkeys/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns2/named-tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns3/named-tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns4/named.port.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/notify/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nslookup/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ans4/ans.py up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns10/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsupdate/verylarge.j2 up to external/mpl/bind//dist/bin/tests/system/padding/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/padding/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/padding/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/padding/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/pending/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/pending/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/pending/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/pending/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans1/root.db up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans1/ans.py up to external/mpl/bind//dist/bin/tests/system/bailiwick/bailiwick_ans.py up to external/mpl/bind//dist/bin/tests/system/bailiwick/tests_bailiwick.py up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans2/victim.db up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans2/ans.py up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/attacker.db up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/ans.py up to external/mpl/bind//dist/bin/tests/system/bailiwick/ans3/victim.db up to external/mpl/bind//dist/bin/tests/system/bailiwick/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named6.conf.j2 up to external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/redirect/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ans2/ans.py up to external/mpl/bind//dist/bin/tests/system/resolver/ns11/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ans3/ans.py up to external/mpl/bind//dist/bin/tests/system/resolver/ans8/ans.py up to external/mpl/bind//dist/bin/tests/system/resolver/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns7/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/resolver/tests_resolver.py up to external/mpl/bind//dist/bin/tests/system/resolver/resolver_ans.py up to external/mpl/bind//dist/bin/tests/system/rndc/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns2/secondkey.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rndc/tests_cve_2023_3341.py up to external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/dnsrps.zones.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test5.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test2.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test3.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test4.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test4a.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test6.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/evil-cname.db.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/slow-rpz.db.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/wild-cname.db.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.db.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.inc-1.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns3/include-rpz.inc-2.in up to external/mpl/bind//dist/bin/tests/system/rpz/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/ns10/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpz/test1.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ans5/ans.py up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.header.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named6.conf.j2 up to external/mpl/bind//dist/bin/tests/system/runtime/ns2/named7.conf.j2 up to external/mpl/bind//dist/bin/tests/system/sfcache/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/sfcache/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/sfcache/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/sortlist/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/staticstub/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statistics/ans4/ans.py up to external/mpl/bind//dist/bin/tests/system/statistics/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statistics/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statistics/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statistics/ns2/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statistics/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statschannel/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/statschannel/__init__.py up to external/mpl/bind//dist/bin/tests/system/statschannel/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/stress/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/stress/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/stress/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/no-apex-covering.db.in up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/tsig/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/tsig/ns1/named-md5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/tsig/ans2/ans.py up to external/mpl/bind//dist/bin/tests/system/tsiggss/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/upforwd/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/upforwd/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns2/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns2/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/views/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/wildcard/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/wildcard/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/wildcard/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/wildcard/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/wildcard/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns1/ixfr-too-big.db up to external/mpl/bind//dist/bin/tests/system/xfer/ns1/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns1/dot-fallback.db up to external/mpl/bind//dist/bin/tests/system/xfer/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns2/sec.db up to external/mpl/bind//dist/bin/tests/system/xfer/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns2/mapped.db up to external/mpl/bind//dist/bin/tests/system/xfer/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns4/root.db.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns8/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns8/large.db.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/ns8/small.db.j2 up to external/mpl/bind//dist/bin/tests/system/xfer/response1.good up to external/mpl/bind//dist/bin/tests/system/xfer/ans10/ans.py up to external/mpl/bind//dist/bin/tests/system/xfer/response2.good up to external/mpl/bind//dist/bin/tests/system/xfer/tests_xfer.py up to external/mpl/bind//dist/bin/tests/system/xfer/response3.good up to external/mpl/bind//dist/bin/tests/system/xfer/tests_retransfer_with_force.py up to external/mpl/bind//dist/bin/tests/system/xfer/tests_retransfer_with_transferstuck.py up to external/mpl/bind//dist/bin/tests/system/xferquota/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xferquota/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zero/ans5/ans.py up to external/mpl/bind//dist/bin/tests/system/zero/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zero/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zero/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zero/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zonechecks/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/zonechecks/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mirror/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mirror/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mirror/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/autosign.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-fips.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-rsasha1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-fips.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-rsasha1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/kasp/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-fips.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-retransfer.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-rsasha1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns3/nsec3-ent.kasp.db.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/common.py up to external/mpl/bind//dist/bin/tests/system/nsec3/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns2/retransfer.kasp.db.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ans7/ans.py up to external/mpl/bind//dist/bin/tests/system/nsec3/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+10491.key up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+10491.private up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+12713.key up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/Kevil.test.+013+12713.private up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/evil.test.db up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3/ns6/setup.sh up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_change.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_initial.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_reconfig.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_reload.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_restart.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_retransfer.py up to external/mpl/bind//dist/bin/tests/system/nsec3/tests_nsec3_length.py up to external/mpl/bind//dist/bin/tests/system/journal/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/journal/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/timeouts/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover/tests_rollover_manual.py up to external/mpl/bind//dist/bin/tests/system/rollover/common.py up to external/mpl/bind//dist/bin/tests/system/rollover/setup.py up to external/mpl/bind//dist/bin/tests/system/filters/conf/bad1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/bad2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/bad3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/bad4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/bad5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/good1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/good2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/good3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/good4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/conf/good5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/common.py up to external/mpl/bind//dist/bin/tests/system/filters/setup.sh up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_a_v4.py up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_a_v6.py up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_aaaa_v4.py up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_aaaa_v6.py up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_checkconf.py up to external/mpl/bind//dist/bin/tests/system/filters/tests_filter_dns64.py up to external/mpl/bind//dist/bin/tests/system/filters/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/filters/ns1/sign.sh up to external/mpl/bind//dist/bin/tests/system/filters/ns1/signed.db.in up to external/mpl/bind//dist/bin/tests/system/filters/ns1/unsigned.db up to external/mpl/bind//dist/bin/tests/system/filters/ns2/hints up to external/mpl/bind//dist/bin/tests/system/filters/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/ns3/hints up to external/mpl/bind//dist/bin/tests/system/filters/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/filters/ns4/root.db up to external/mpl/bind//dist/bin/tests/system/filters/ns4/sign.sh up to external/mpl/bind//dist/bin/tests/system/filters/ns4/signed.db.in up to external/mpl/bind//dist/bin/tests/system/filters/ns4/unsigned.db up to external/mpl/bind//dist/bin/tests/system/filters/ns5/hints up to external/mpl/bind//dist/bin/tests/system/filters/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/kasp.conf.j2 up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/setup.sh up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns3/template.db.in up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/setup.sh up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/template.ext.db.in up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/ns4/template.int.db.in up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/setup.sh up to external/mpl/bind//dist/bin/tests/system/migrate2kasp/tests_migrate2kasp.py up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/example.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/truncated.selfsigned.db.signed up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns2/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_malformed_dnskey/tests_malformed_dnskey.py up to external/mpl/bind//dist/bin/tests/system/doth/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/doth/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/doth/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/doth/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/doth/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.args.j2 up to external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.args.j2 up to external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/host/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/isctest/text.py up to external/mpl/bind//dist/bin/tests/system/isctest/vars/.ac_vars/JQ.in up to external/mpl/bind//dist/bin/tests/system/isctest/vars/.ac_vars/XMLLINT.in up to external/mpl/bind//dist/bin/tests/system/isctest/vars/features.py up to external/mpl/bind//dist/bin/tests/system/optout/ns2/controls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/optout/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/optout/ns2/small.test.db up to external/mpl/bind//dist/bin/tests/system/optout/ns2/test.db up to external/mpl/bind//dist/bin/tests/system/optout/tests_optout.py up to external/mpl/bind//dist/bin/tests/system/convert_junit_to_trs.py up to external/mpl/bind//dist/bin/tests/system/selftest/tests_zone_analyzer.py up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/zones/root.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns1/sign.sh up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/zones/example.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns2/sign.sh up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/setup.sh up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/tests_mixed_ds.py up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/zones/child.example.db.in up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns3/sign.sh up to external/mpl/bind//dist/bin/tests/system/dnssec_unsupported_ds/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns2/tld.db up to external/mpl/bind//dist/bin/tests/system/expiredglue/tests_expiredglue.py up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/dnshoster.tld.db up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/example.tld.db up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/named.args up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/expiredglue/ns4/root.hint up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/mars.com.db up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/mars.conf up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone1.com.db up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone1.conf up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone2.com.db up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/ns2/zone2.conf up to external/mpl/bind//dist/bin/tests/system/include_multiplecfg/tests_include_multiplecfg.py up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ans2/ans.py up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/prereq.sh up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/setup.sh up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/tests.sh up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/tests_sh_ixfr_nonminimal.py up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ans4/ans.py up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ixfr_nonminimal/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mirror_root_zone/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/mirror_root_zone/tests_mirror_root_zone.py up to external/mpl/bind//dist/bin/tests/system/nsec/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/nsec/ns2/excessive-nsec-rrsigs.db.in up to external/mpl/bind//dist/bin/tests/system/nsec/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec/tests_excessive_rrsigs.py up to external/mpl/bind//dist/bin/tests/system/nsec/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/root.db.in up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns1/sign.sh up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/setup.sh up to external/mpl/bind//dist/bin/tests/system/nsec3_answer/tests_nsec3.py up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/iter-too-many.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns2/sub.iter-too-many.db up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/tests_excessive_nsec3_iterations.py up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsec3_delegation/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns2/tld.db up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/tests_nsprocessinglimit.py up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns3/example.tld.db up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/named.args up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nsprocessinglimit/ns4/root.hint up to external/mpl/bind//dist/bin/tests/system/nta/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nta/ns1/root.db.in up to external/mpl/bind//dist/bin/tests/system/nta/ns1/sign.sh up to external/mpl/bind//dist/bin/tests/system/nta/ns2/corp.db up to external/mpl/bind//dist/bin/tests/system/nta/ns2/example.db.in up to external/mpl/bind//dist/bin/tests/system/nta/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nta/ns2/sign.sh up to external/mpl/bind//dist/bin/tests/system/nta/setup.sh up to external/mpl/bind//dist/bin/tests/system/nta/tests_nta.py up to external/mpl/bind//dist/bin/tests/system/nta/ns3/bogus.example.db.in up to external/mpl/bind//dist/bin/tests/system/nta/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nta/ns3/secure.example.db.in up to external/mpl/bind//dist/bin/tests/system/nta/ns3/sign.sh up to external/mpl/bind//dist/bin/tests/system/nta/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/nta/ns9/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/query_source/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns2/root.hint up to external/mpl/bind//dist/bin/tests/system/query_source/tests_querysource_none.py up to external/mpl/bind//dist/bin/tests/system/query_source/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns3/root.hint up to external/mpl/bind//dist/bin/tests/system/query_source/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns4/root.hint up to external/mpl/bind//dist/bin/tests/system/query_source/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/query_source/ns5/root.hint up to external/mpl/bind//dist/bin/tests/system/randomizens/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/randomizens/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/randomizens/README up to external/mpl/bind//dist/bin/tests/system/randomizens/ns2/example.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns2/1st.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns2/2nd.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/randomizens/ns2/xxx.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns3/example.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns3/1st.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/randomizens/tests_randomizens.py up to external/mpl/bind//dist/bin/tests/system/randomizens/ns4/example.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/randomizens/ns5/example.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns5/1st.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns5/2nd.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns5/3rd.db up to external/mpl/bind//dist/bin/tests/system/randomizens/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/randomizens/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/tests_rollover_algo_csk_initial.py up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/tests_rollover_algo_csk_reconfig.py up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/csk1.conf up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/csk2.conf up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_csk/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/tests_rollover_algo_ksk_zsk_initial.py up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/tests_rollover_algo_ksk_zsk_reconfig.py up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_algo_ksk_zsk/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/tests_rollover_csk_roll1.py up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll1/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/tests_rollover_csk_roll2.py up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_csk_roll2/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/dynamic2inline.kasp.db up to external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_dynamic2inline/tests_rollover_dynamic2inline.py up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/tests_rollover_enable_dnssec.py up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_enable_dnssec/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/tests_rollover_going_insecure_initial.py up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/tests_rollover_going_insecure_reconfig.py up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_going_insecure/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/tests_rollover_three_is_a_crowd.py up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_3crowd/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/tests_rollover_ksk_doubleksk.py up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_ksk_doubleksk/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/kasp.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/limit-lifetime.db up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/longer-lifetime.db up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/shorter-lifetime.db up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/template.db.in up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/ns3/unlimit-lifetime.db up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/tests_rollover_lifetime_initial.py up to external/mpl/bind//dist/bin/tests/system/rollover_lifetime/tests_rollover_lifetime_reconfig.py up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/kasp.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/template.db.in up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_multisigner/tests_rollover_multisigner.py up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/tests_rollover_straight2none_initial.py up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/tests_rollover_straight2none_reconfig.py up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_straight2none/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns1/root.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns2/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/tests_rollover_zsk_prepublication.py up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/kasp.conf up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/named.common.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/template.db.j2.manual up to external/mpl/bind//dist/bin/tests/system/rollover_zsk_prepub/ns3/trusted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ans2/ans.pl up to external/mpl/bind//dist/bin/tests/system/serve_stale/prereq.sh up to external/mpl/bind//dist/bin/tests/system/serve_stale/tests.sh up to external/mpl/bind//dist/bin/tests/system/serve_stale/tests_sh_serve_stale.py up to external/mpl/bind//dist/bin/tests/system/serve_stale/ans8/ans.pl up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named1.conf.in up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named2.conf.in up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named3.conf.in up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named4.conf.in up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/root.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns1/stale.test.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named2.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named3.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named4.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named5.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named6.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named7.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named8.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/named9.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/root.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns3/serve.stale.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns4/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns5/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/serve.stale.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns6/stale.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/named1.conf.j2 up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/root.db up to external/mpl/bind//dist/bin/tests/system/serve_stale/ns7/target.stale.db up to external/mpl/bind//dist/bin/tests/system/sig0/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/sig0/setup.sh up to external/mpl/bind//dist/bin/tests/system/sig0/tests_sig0.py up to external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/example.db.in up to external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/maxrrperset.db.in up to external/mpl/bind//dist/bin/tests/system/ssumaxtype/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ssumaxtype/setup.sh up to external/mpl/bind//dist/bin/tests/system/ssumaxtype/tests_ssumaxtype.py up to external/mpl/bind//dist/bin/tests/system/ssutoctou/ns1/example.db.in up to external/mpl/bind//dist/bin/tests/system/ssutoctou/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/ssutoctou/setup.sh up to external/mpl/bind//dist/bin/tests/system/ssutoctou/tests_ssutoctou.py up to external/mpl/bind//dist/bin/tests/system/tkey/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/tkey/tests_cve_2026_3119.py up to external/mpl/bind//dist/bin/tests/system/transport_acl/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_acl/self-signed-cert.pem up to external/mpl/bind//dist/bin/tests/system/transport_acl/self-signed-key.pem up to external/mpl/bind//dist/bin/tests/system/transport_acl/setup.sh up to external/mpl/bind//dist/bin/tests/system/transport_acl/tests.sh up to external/mpl/bind//dist/bin/tests/system/transport_acl/tests_sh_transport_acl.py up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-http-plain-proxy.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-http-plain.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https-proxy-encrypted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https-proxy-plain.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-https.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-proxy.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls-proxy-encrypted.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls-proxy-plain.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named-tls.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/transport_change/prereq.sh up to external/mpl/bind//dist/bin/tests/system/transport_change/privkey.pem up to external/mpl/bind//dist/bin/tests/system/transport_change/self-signed-cert.pem up to external/mpl/bind//dist/bin/tests/system/transport_change/self-signed-key.pem up to external/mpl/bind//dist/bin/tests/system/transport_change/setup.sh up to external/mpl/bind//dist/bin/tests/system/transport_change/tests.sh up to external/mpl/bind//dist/bin/tests/system/transport_change/tests_sh_transport_change.py up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns1/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns1/test.db.j2 up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns2/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/tests_xfer_servers_list.py up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns3/named.conf.j2 up to external/mpl/bind//dist/bin/tests/system/xfer_servers_list/ns4/named.conf.j2 up to external/mpl/bind//dist/doc/notes/notes-9.20.12.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.13.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.14.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.15.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.16.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.17.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.18.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.19.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.20.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.21.rst up to external/mpl/bind//dist/doc/notes/notes-9.20.22.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.12.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.13.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.14.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.15.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.16.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.17.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.18.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.19.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.20.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.21.rst up to external/mpl/bind//dist/doc/changelog/changelog-9.20.22.rst up to external/mpl/bind//dist/lib/dns/include/dns/dsync.h up to external/mpl/bind//dist/lib/dns/rdata/generic/brid_68.c up to external/mpl/bind//dist/lib/dns/rdata/generic/brid_68.h up to external/mpl/bind//dist/lib/dns/rdata/generic/dsync_66.c up to external/mpl/bind//dist/lib/dns/rdata/generic/dsync_66.h up to external/mpl/bind//dist/lib/dns/rdata/generic/hhit_67.c up to external/mpl/bind//dist/lib/dns/rdata/generic/hhit_67.h up to external/mpl/bind//dist/util/check-make-install.sh.in up to external/mpl/bind//dist/bin/tests/convert-trs-to-junit.py delete external/mpl/bind//dist/bin/tests/system/convert-junit-to-trs.py delete external/mpl/bind//dist/bin/tests/system/kasp.sh delete external/mpl/bind//dist/bin/tests/system/acl/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns2/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns2/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns2/named5.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/acl/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/ns1/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/ns1/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/additional/setup.sh delete external/mpl/bind//dist/bin/tests/system/additional/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns2/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/addzone/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns1/root.db delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/generic.db delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named01.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named02.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named03.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named04.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named05.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named06.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named07.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named08.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named09.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named10.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named11.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named12.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named21.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named22.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named23.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named24.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named25.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named26.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named27.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named28.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named29.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named30.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named31.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named32.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named33.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named34.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named40.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named53.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named54.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named55.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named56.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns2/named57.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/setup.sh delete external/mpl/bind//dist/bin/tests/system/allow-query/tests.sh delete external/mpl/bind//dist/bin/tests/system/allow-query/tests_sh_allow_query.py delete external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named.args delete external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/allow-query/ns3/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/autosign/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/autosign/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/autosign/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/autosign/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/autosign/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/catz/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/catz/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/catz/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/catz/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/catz/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/chain/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/chain/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/chain/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/chain/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns10/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkds/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-cname-and-atmrelay.db delete external/mpl/bind//dist/bin/tests/system/checkzone/zones/bad-tsig.db.in delete external/mpl/bind//dist/bin/tests/system/cipher-suites/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/cipher-suites/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/cipher-suites/prereq.sh delete external/mpl/bind//dist/bin/tests/system/cipher-suites/self-signed-cert.pem delete external/mpl/bind//dist/bin/tests/system/cipher-suites/self-signed-key.pem delete external/mpl/bind//dist/bin/tests/system/cipher-suites/setup.sh delete external/mpl/bind//dist/bin/tests/system/cipher-suites/tests_cipher_suites.py delete external/mpl/bind//dist/bin/tests/system/cipher-suites/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/cipher-suites/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/cipher-suites/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/cookie/prereq.sh delete external/mpl/bind//dist/bin/tests/system/dialup/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dialup/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dialup/setup.sh delete external/mpl/bind//dist/bin/tests/system/dialup/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/digdelv/ans4/startme delete external/mpl/bind//dist/bin/tests/system/digdelv/ans5/ans.pl delete external/mpl/bind//dist/bin/tests/system/digdelv/ans6/ans.pl delete external/mpl/bind//dist/bin/tests/system/digdelv/ans7/ans.pl delete external/mpl/bind//dist/bin/tests/system/digdelv/ans8/ans.py delete external/mpl/bind//dist/bin/tests/system/digdelv/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/digdelv/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/digdelv/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dlzexternal/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf1.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf2.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns1/named.conf3.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dns64/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns4/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns5/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dnssec/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/doth/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/doth/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/doth/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/doth/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/doth/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dsdigest/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dsdigest/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dsdigest/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/dsdigest/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ecdsa/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ecdsa/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ecdsa/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/eddsa/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/eddsa/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/eddsa/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.args.in delete external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.args.in delete external/mpl/bind//dist/bin/tests/system/enginepkcs11/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ans4/ans.pl delete external/mpl/bind//dist/bin/tests/system/fetchlimit/setup.sh delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns3/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/fetchlimit/ns5/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad1.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad2.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad3.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad4.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/bad5.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good1.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good2.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good3.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good4.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/conf/good5.conf delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/setup.sh delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/tests.sh delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/tests_sh_filter_aaaa.py delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/root.db delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/sign.sh delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/signed.db.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns1/unsigned.db delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/hints delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/hints delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/root.db delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/sign.sh delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/signed.db.in delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns4/unsigned.db delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns5/hints delete external/mpl/bind//dist/bin/tests/system/filter-aaaa/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns10/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns2/named-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns2/options-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns4/named-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns4/options-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns9/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns9/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns9/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/forward/ns9/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named10.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named11.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named12.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named5.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named6.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named7.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named8.conf.in delete external/mpl/bind//dist/bin/tests/system/geoip2/ns2/named9.conf.in delete external/mpl/bind//dist/bin/tests/system/glue/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/host/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/mars.com.db delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/mars.conf delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone1.com.db delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone1.conf delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone2.com.db delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/ns2/zone2.conf delete external/mpl/bind//dist/bin/tests/system/include-multiplecfg/tests_include_multiplecfg.py delete external/mpl/bind//dist/bin/tests/system/inline/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.post delete external/mpl/bind//dist/bin/tests/system/inline/ns5/named.conf.pre delete external/mpl/bind//dist/bin/tests/system/inline/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/inline/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/isctest/compat.py delete external/mpl/bind//dist/bin/tests/system/isctest/rndc.py delete external/mpl/bind//dist/bin/tests/system/ixfr/ans2/startme delete external/mpl/bind//dist/bin/tests/system/ixfr/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ixfr/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ixfr/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/ixfr/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/journal/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/journal/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/autosign.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns3/policies/kasp.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns3/named-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk1.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/csk2.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/policies/kasp.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/kasp/ns6/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/ksr/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/setup.sh delete external/mpl/bind//dist/bin/tests/system/legacy/ns10/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/legacy/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.abspathconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.dirconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.incconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.iso8601.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.pipeconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plain.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.plainconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.symconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.tsconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.unlimited.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/ns1/named.versconf.in delete external/mpl/bind//dist/bin/tests/system/logfileconfig/setup.sh delete external/mpl/bind//dist/bin/tests/system/masterformat/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/masterformat/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/masterformat/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/masterformat/ns4/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/mirror/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mirror/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mirror/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/dnsrps.zones.in delete external/mpl/bind//dist/bin/tests/system/rpz/test1 delete external/mpl/bind//dist/bin/tests/system/rpz/test2 delete external/mpl/bind//dist/bin/tests/system/rpz/test3 delete external/mpl/bind//dist/bin/tests/system/rpz/test4 delete external/mpl/bind//dist/bin/tests/system/rpz/test4a delete external/mpl/bind//dist/bin/tests/system/rpz/test5 delete external/mpl/bind//dist/bin/tests/system/rpz/test6 delete external/mpl/bind//dist/bin/tests/system/rpz/ns10/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpz/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mirror-root-zone/ns1/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/mirror-root-zone/tests_mirror_root_zone.py delete external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns1/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/mkeys/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/multisigner/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/multisigner/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/multisigner/tests.sh delete external/mpl/bind//dist/bin/tests/system/multisigner/tests_sh_multisigner.py delete external/mpl/bind//dist/bin/tests/system/multisigner/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns2/named-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns2/options-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns3/named-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns3/options-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/notify/ns4/named.port.in delete external/mpl/bind//dist/bin/tests/system/notify/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named2-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/nsec3/tests.sh delete external/mpl/bind//dist/bin/tests/system/nsec3/tests_sh_nsec3.py delete external/mpl/bind//dist/bin/tests/system/nslookup/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/verylarge.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ans4/ans.pl delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns1/tls.options.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns10/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns7/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/nsupdate/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/padding/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/padding/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/padding/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/padding/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/pending/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/pending/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/pending/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/pending/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/proxy/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/proxy/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/qmin/prereq.sh delete external/mpl/bind//dist/bin/tests/system/query-source/ns1/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/query-source/ns1/root.db delete external/mpl/bind//dist/bin/tests/system/query-source/ns2/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/query-source/ns2/root.hint delete external/mpl/bind//dist/bin/tests/system/query-source/tests_querysource_none.py delete external/mpl/bind//dist/bin/tests/system/query-source/ns3/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/query-source/ns3/root.hint delete external/mpl/bind//dist/bin/tests/system/query-source/ns4/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/query-source/ns4/root.hint delete external/mpl/bind//dist/bin/tests/system/query-source/ns5/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/query-source/ns5/root.hint delete external/mpl/bind//dist/bin/tests/system/reclimit/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named5.conf.in delete external/mpl/bind//dist/bin/tests/system/reclimit/ns3/named6.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/redirect/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ans2/ans.pl delete external/mpl/bind//dist/bin/tests/system/resolver/ans3/ans.pl delete external/mpl/bind//dist/bin/tests/system/resolver/ans8/ans.pl delete external/mpl/bind//dist/bin/tests/system/resolver/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns11/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns7/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns7/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/resolver/ns9/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns2/secondkey.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/tests_cve-2023-3341.py delete external/mpl/bind//dist/bin/tests/system/rndc/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rndc/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rollover/ns3/setup.sh delete external/mpl/bind//dist/bin/tests/system/rollover/ns3/template.db.in delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/csk1.conf.j2 delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/csk2.conf.j2 delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/kasp.conf.j2 delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/named.conf.j2 delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/named2.conf.j2 delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/setup.sh delete external/mpl/bind//dist/bin/tests/system/rollover/ns6/template.db.in delete external/mpl/bind//dist/bin/tests/system/rollover/setup.sh delete external/mpl/bind//dist/bin/tests/system/rollover/tests_rollover.py delete external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rootkeysentinel/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ans5/ans.pl delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns2/named.conf.header.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns3/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/rpzrecurse/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/rsabigexponent/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt1.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt2.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt3.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt4.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt5.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named-alt9.conf.in delete external/mpl/bind//dist/bin/tests/system/runtime/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ans2/ans.pl delete external/mpl/bind//dist/bin/tests/system/serve-stale/prereq.sh delete external/mpl/bind//dist/bin/tests/system/serve-stale/setup.sh delete external/mpl/bind//dist/bin/tests/system/serve-stale/tests.sh delete external/mpl/bind//dist/bin/tests/system/serve-stale/tests_sh_serve_stale.py delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/root.db delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns1/stale.test.db delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named4.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named5.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named6.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named7.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/named8.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/root.db delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns3/serve.stale.db delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/serve.stale.db delete external/mpl/bind//dist/bin/tests/system/serve-stale/ns6/stale.db delete external/mpl/bind//dist/bin/tests/system/sfcache/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/sfcache/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/sfcache/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/sortlist/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/sortlist/setup.sh delete external/mpl/bind//dist/bin/tests/system/staticstub/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/staticstub/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/staticstub/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/staticstub/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ans4/ans.pl delete external/mpl/bind//dist/bin/tests/system/statistics/setup.sh delete external/mpl/bind//dist/bin/tests/system/statistics/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns1/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns2/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statistics/ns3/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/statschannel/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/statschannel/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/statschannel/traffic-json.pl delete external/mpl/bind//dist/bin/tests/system/statschannel/traffic-xml.pl delete external/mpl/bind//dist/bin/tests/system/statschannel/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/stress/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/stress/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/stress/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns1/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns2/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns3/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns4/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns5/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/synthfromdnssec/ns6/statistics-channels.conf.in delete external/mpl/bind//dist/bin/tests/system/timeouts/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/timeouts/prereq.sh delete external/mpl/bind//dist/bin/tests/system/transport-acl/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-acl/self-signed-cert.pem delete external/mpl/bind//dist/bin/tests/system/transport-acl/self-signed-key.pem delete external/mpl/bind//dist/bin/tests/system/transport-acl/setup.sh delete external/mpl/bind//dist/bin/tests/system/transport-acl/tests.sh delete external/mpl/bind//dist/bin/tests/system/transport-acl/tests_sh_transport_acl.py delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-http-plain-proxy.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-http-plain.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https-proxy-encrypted.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https-proxy-plain.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-https.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-proxy.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls-proxy-encrypted.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls-proxy-plain.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named-tls.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/transport-change/prereq.sh delete external/mpl/bind//dist/bin/tests/system/transport-change/privkey.pem delete external/mpl/bind//dist/bin/tests/system/transport-change/self-signed-cert.pem delete external/mpl/bind//dist/bin/tests/system/transport-change/self-signed-key.pem delete external/mpl/bind//dist/bin/tests/system/transport-change/setup.sh delete external/mpl/bind//dist/bin/tests/system/transport-change/tests.sh delete external/mpl/bind//dist/bin/tests/system/transport-change/tests_sh_transport_change.py delete external/mpl/bind//dist/bin/tests/system/tsig/ans2/ans.pl delete external/mpl/bind//dist/bin/tests/system/tsig/setup.sh delete external/mpl/bind//dist/bin/tests/system/tsig/ns1/named-fips.conf.in delete external/mpl/bind//dist/bin/tests/system/tsig/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/tsiggss/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/upforwd/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/upforwd/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/upforwd/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns2/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns2/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns2/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns3/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns3/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/views/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/wildcard/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/wildcard/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/wildcard/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/wildcard/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/wildcard/ns5/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/axfr-stats.good delete external/mpl/bind//dist/bin/tests/system/xfer/dig1.good delete external/mpl/bind//dist/bin/tests/system/xfer/dig2.good delete external/mpl/bind//dist/bin/tests/system/xfer/dig3.good delete external/mpl/bind//dist/bin/tests/system/xfer/tests.sh delete external/mpl/bind//dist/bin/tests/system/xfer/tests_sh_xfer.py delete external/mpl/bind//dist/bin/tests/system/xfer/ns1/dot-fallback.db.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns1/ixfr-too-big.db.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns1/named1.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns1/named2.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns1/named3.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns2/mapped.db.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns2/sec.db.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns4/named.conf.base.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns4/root.db.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns6/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns7/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xfer/ns8/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xferquota/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/xferquota/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zero/ans5/ans.pl delete external/mpl/bind//dist/bin/tests/system/zero/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zero/ns2/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zero/ns3/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zero/ns4/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zonechecks/ns1/named.conf.in delete external/mpl/bind//dist/bin/tests/system/zonechecks/ns2/named.conf.in delete external/mpl/bind//dist/lib/isc/entropy.c delete external/mpl/bind//dist/lib/isc/nonce.c delete external/mpl/bind//dist/lib/isc/include/isc/entropy.h delete external/mpl/bind//dist/tests/isc/random_test.c delete external/mpl/bind//dist/util/check-make-install.in delete external/mpl/bind/Makefile.inc up to 1.19 external/mpl/bind/bind2netbsd up to 1.12 external/mpl/bind/bin/named/Makefile up to 1.7 external/mpl/bind/dist/CONTRIBUTING.md up to 1.1.1.10 external/mpl/bind/dist/Makefile.in up to 1.15 external/mpl/bind/dist/NEWS up to 1.1.1.7 external/mpl/bind/dist/aclocal.m4 up to 1.1.1.9 external/mpl/bind/dist/ar-lib up to 1.1.1.2 external/mpl/bind/dist/compile up to 1.1.1.2 external/mpl/bind/dist/config.guess up to 1.5 external/mpl/bind/dist/config.h.in up to 1.18 external/mpl/bind/dist/config.sub up to 1.4 external/mpl/bind/dist/configure up to 1.23 external/mpl/bind/dist/configure.ac up to 1.1.1.21 external/mpl/bind/dist/depcomp up to 1.1.1.2 external/mpl/bind/dist/install-sh up to 1.1.1.4 external/mpl/bind/dist/ltmain.sh up to 1.1.1.5 external/mpl/bind/dist/missing up to 1.1.1.2 external/mpl/bind/dist/srcid up to 1.1.1.22 external/mpl/bind/dist/test-driver up to 1.1.1.2 external/mpl/bind/dist/bin/Makefile.in up to 1.1.1.7 external/mpl/bind/dist/bin/check/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/bin/check/check-tool.c up to 1.12 external/mpl/bind/dist/bin/check/named-checkconf.c up to 1.14 external/mpl/bind/dist/bin/check/named-checkconf.rst up to 1.1.1.6 external/mpl/bind/dist/bin/check/named-checkzone.c up to 1.13 external/mpl/bind/dist/bin/confgen/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/delv/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/delv/delv.c up to 1.19 external/mpl/bind/dist/bin/dig/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/dig/dig.rst up to 1.1.1.10 external/mpl/bind/dist/bin/dig/dighost.c up to 1.21 external/mpl/bind/dist/bin/dnssec/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/dnssec/dnssec-cds.c up to 1.13 external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.c up to 1.14 external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.rst up to 1.1.1.5 external/mpl/bind/dist/bin/dnssec/dnssec-importkey.c up to 1.11 external/mpl/bind/dist/bin/dnssec/dnssec-importkey.rst up to 1.1.1.5 external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.c up to 1.13 external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.rst up to 1.1.1.6 external/mpl/bind/dist/bin/dnssec/dnssec-keygen.c up to 1.16 external/mpl/bind/dist/bin/dnssec/dnssec-keygen.rst up to 1.1.1.7 external/mpl/bind/dist/bin/dnssec/dnssec-ksr.c up to 1.5 external/mpl/bind/dist/bin/dnssec/dnssec-revoke.c up to 1.12 external/mpl/bind/dist/bin/dnssec/dnssec-settime.c up to 1.11 external/mpl/bind/dist/bin/dnssec/dnssec-signzone.c up to 1.16 external/mpl/bind/dist/bin/dnssec/dnssec-verify.c up to 1.10 external/mpl/bind/dist/bin/dnssec/dnssectool.c up to 1.13 external/mpl/bind/dist/bin/dnssec/dnssectool.h up to 1.9 external/mpl/bind/dist/bin/named/Makefile.in up to 1.1.1.13 external/mpl/bind/dist/bin/named/bind9.xsl up to 1.1.1.12 external/mpl/bind/dist/bin/named/config.c up to 1.20 external/mpl/bind/dist/bin/named/controlconf.c up to 1.14 external/mpl/bind/dist/bin/named/logconf.c up to 1.11 external/mpl/bind/dist/bin/named/main.c up to 1.23 external/mpl/bind/dist/bin/named/server.c up to 1.27 external/mpl/bind/dist/bin/named/statschannel.c up to 1.19 external/mpl/bind/dist/bin/named/tkeyconf.c up to 1.9 external/mpl/bind/dist/bin/named/transportconf.c up to 1.4 external/mpl/bind/dist/bin/named/zoneconf.c up to 1.20 external/mpl/bind/dist/bin/nsupdate/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/nsupdate/nsupdate.c up to 1.17 external/mpl/bind/dist/bin/plugins/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/plugins/filter-a.c up to 1.4 external/mpl/bind/dist/bin/plugins/filter-aaaa.c up to 1.12 external/mpl/bind/dist/bin/rndc/Makefile.in up to 1.1.1.11 external/mpl/bind/dist/bin/rndc/rndc.c up to 1.15 external/mpl/bind/dist/bin/rndc/rndc.rst up to 1.1.1.10 external/mpl/bind/dist/bin/tests/Makefile.am up to 1.1.1.2 external/mpl/bind/dist/bin/tests/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/Makefile.am up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/Makefile.in up to 1.1.1.15 external/mpl/bind/dist/bin/tests/system/README.md up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/conf.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/conftest.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/custom-test-driver up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/feature-test.c up to 1.14 external/mpl/bind/dist/bin/tests/system/genzone.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/ifconfig.sh.in up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/makejournal.c up to 1.4 external/mpl/bind/dist/bin/tests/system/pytest.ini up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/start.pl up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/vulture_ignore_list.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/acl/setup.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/acl/tests.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/additional/tests.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/addzone/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/addzone/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/addzone/tests_rndc_deadlock.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/auth/tests.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/auth/ns1/example.com.db up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/auth/ns1/example.net.db up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/autosign/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/autosign/tests.sh up to 1.1.1.17 external/mpl/bind/dist/bin/tests/system/autosign/tests_sh_autosign.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/autosign/ns3/keygen.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/cacheclean/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/catz/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/catz/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/catz/tests_sh_catz.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/chain/prereq.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/chain/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/chain/ans3/ans.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/chain/ans4/ans.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/checkconf/good.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/checkconf/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/checkds/setup.sh up to 1.5 external/mpl/bind/dist/bin/tests/system/checkds/tests_checkds.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/checknames/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/checknames/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/checknames/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/checknames/ns5/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/checkzone/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/checkzone/tests.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/checkzone/zones/crashzone.db up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/cookie/ans9/ans.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/cookie/ns1/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/cookie/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/cookie/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/cookie/ns5/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/cookie/ns6/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/cookie/ns8/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/database/tests_database.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/database/ns1/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dialup/tests_dialup_zone_transfer.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/digdelv/prereq.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/digdelv/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/digdelv/tests.sh up to 1.1.1.19 external/mpl/bind/dist/bin/tests/system/digdelv/tests_sh_digdelv.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/digdelv/yamlget.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/digdelv/ns2/example.db.in up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dispatch/tests_connreset.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dispatch/ans3/ans.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/dlzexternal/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/Makefile.in up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/driver.c up to 1.4 external/mpl/bind/dist/bin/tests/system/dns64/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/dns64/tests.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/dnssec/prereq.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/dnssec/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/dnssec/tests.sh up to 1.1.1.17 external/mpl/bind/dist/bin/tests/system/dnssec/tests_sh_dnssec.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dnssec/ans10/ans.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/example.db.in up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/dnssec/ns2/sign.sh up to 1.1.1.14 external/mpl/bind/dist/bin/tests/system/dnssec/ns3/secure.example.db.in up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/dnssec/ns3/sign.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/dnstap/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/dnstap/tests_dnstap.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dnstap/tests_sh_dnstap.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dnstap/ydump.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/dnstap/ns1/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnstap/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnstap/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/dnstap/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/doth/conftest.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/doth/example.axfr.good up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/doth/example8.axfr.good up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/doth/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/doth/stress_http_quota.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/doth/tests.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/doth/tests_gnutls.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/dsdigest/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/dsdigest/tests_dsdigest.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/dyndb/driver/Makefile.in up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/dyndb/driver/util.h up to 1.7 external/mpl/bind/dist/bin/tests/system/dyndb/driver/zone.c up to 1.9 external/mpl/bind/dist/bin/tests/system/ecdsa/setup.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/ecdsa/tests_ecdsa.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/eddsa/setup.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/emptyzones/tests_emptyzones.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/enginepkcs11/setup.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/fetchlimit/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/fetchlimit/tests_sh_fetchlimit.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/forward/prereq.sh up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/forward/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/forward/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/forward/tests_sh_forward.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/forward/ans11/ans.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/forward/ans6/ans.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/geoip2/setup.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/geoip2/tests.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/glue/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/glue/tests_glue.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/hooks/tests_async_plugin.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/hooks/driver/Makefile.in up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/hooks/driver/test-async.c up to 1.4 external/mpl/bind/dist/bin/tests/system/hooks/ns1/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/host/setup.sh up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/inline/setup.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/inline/tests.sh up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/isctest/__init__.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/isctest/__main__.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/isctest/asyncserver.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/isctest/check.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/isctest/instance.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/isctest/kasp.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/isctest/mark.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/isctest/name.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/query.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/isctest/run.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/isctest/template.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/isctest/util.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/hypothesis/__init__.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/hypothesis/strategies.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/isctest/log/__init__.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/isctest/log/basic.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/isctest/log/watchlog.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/isctest/vars/__init__.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/vars/algorithms.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/vars/all.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/vars/autoconf.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/isctest/vars/basic.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/vars/dirs.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/isctest/vars/openssl.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/ixfr/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/ixfr/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/journal/setup.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/kasp/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/kasp/tests_kasp.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/kasp/ns3/setup.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/keepalive/tests_keepalive.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/keyfromlabel/tests_keyfromlabel.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/ksr/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/ksr/tests_ksr.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/ksr/ns1/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/legacy/tests.sh up to 1.1.1.14 external/mpl/bind/dist/bin/tests/system/limits/tests_limits.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/logfileconfig/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/masterfile/tests_masterfile.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/masterfile/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/masterformat/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/masterformat/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/mirror/setup.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/mkeys/setup.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/mkeys/tests.sh up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/mkeys/tests_sh_mkeys.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/multisigner/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/multisigner/ns3/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/multisigner/ns4/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/names/tests_names.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/notify/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/notify/tests.sh up to 1.1.1.13 external/mpl/bind/dist/bin/tests/system/notify/tests_sh_notify.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/nsec3/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/nsec3/ns3/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/nslookup/setup.sh up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/nsupdate/setup.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/nsupdate/tests.sh up to 1.1.1.17 external/mpl/bind/dist/bin/tests/system/nsupdate/tests_sh_nsupdate.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/nzd2nzf/tests_nzd2nzf.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/padding/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/pending/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/pipelined/pipequeries.c up to 1.11 external/mpl/bind/dist/bin/tests/system/pipelined/ans5/ans.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/pipelined/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/pipelined/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/pipelined/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/proxy/setup.sh up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/qmin/qmin_ans.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/qmin/tests_sh_qmin.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/qmin/ans2/ans.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/qmin/ans3/ans.py up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/qmin/ans4/ans.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/reclimit/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/reclimit/tests.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/reclimit/tests_sh_reclimit.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/redirect/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/resolver/setup.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/resolver/tests.sh up to 1.1.1.14 external/mpl/bind/dist/bin/tests/system/resolver/ans10/ans.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rfc5011/tests_rfc5011.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/rndc/setup.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/rndc/tests.sh up to 1.1.1.14 external/mpl/bind/dist/bin/tests/system/rollover/ns3/kasp.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rollover/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rootkeysentinel/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/rpz/setup.sh up to 1.1.1.14 external/mpl/bind/dist/bin/tests/system/rpz/tests.sh up to 1.1.1.16 external/mpl/bind/dist/bin/tests/system/rpz/tests_sh_rpz.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpz/tests_sh_rpz_dnsrps.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpz/ns2/tld2.db up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpz/ns4/tld4.db up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/rpz/testlib/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/rpzextra/tests_rpzextra.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/rpzrecurse/tests.sh up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip2.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.default.conf up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.log.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.max.conf up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard1.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard2.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard3.conf up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard4.conf up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rrchecker/tests_rrchecker.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rrl/tests_sh_rrl.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/rrl/ns1/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrl/ns2/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrl/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrl/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrsetorder/ns3/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrsetorder/ns4/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rrsetorder/ns5/named.conf.j2 up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/rsabigexponent/bigkey.c up to 1.12 external/mpl/bind/dist/bin/tests/system/rsabigexponent/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/runtime/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/runtime/tests.sh up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/sfcache/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/shutdown/tests_shutdown.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/sortlist/tests_sortlist.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/spf/tests_spf_zones.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/staticstub/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/staticstub/tests.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/statistics/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/statschannel/generic.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/statschannel/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/statschannel/tests.sh up to 1.1.1.15 external/mpl/bind/dist/bin/tests/system/statschannel/tests_json.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/statschannel/tests_sh_statschannel.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/statschannel/tests_xml.py up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/statschannel/ns2/sign.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/stress/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/stress/tests_stress_update.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/stub/tests_stub.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/synthfromdnssec/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests_sh_synthfromdnssec.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/root.db.in up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/sign.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/tcp/tests_tcp.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/tcp/ans6/ans.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/timeouts/setup.sh up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/timeouts/tests_tcp_timeouts.py up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/tools/tests_tools_nsec3hash.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/tsig/tests_badtime.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/tsig/tests_tsig_hypothesis.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/tsiggss/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/tsiggss/tests_isc_spnego_flaws.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/ttl/tests_cache_ttl.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/upforwd/setup.sh up to 1.1.1.12 external/mpl/bind/dist/bin/tests/system/upforwd/tests.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/upforwd/tests_sh_upforwd.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/verify/tests_verify.py up to 1.1.1.4 external/mpl/bind/dist/bin/tests/system/views/setup.sh up to 1.1.1.10 external/mpl/bind/dist/bin/tests/system/views/tests.sh up to 1.1.1.11 external/mpl/bind/dist/bin/tests/system/wildcard/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/wildcard/tests_wildcard.py up to 1.1.1.6 external/mpl/bind/dist/bin/tests/system/xfer/knowngood.mapped up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/xfer/setup.sh up to 1.1.1.9 external/mpl/bind/dist/bin/tests/system/xfer/ans9/ans.py up to 1.1.1.3 external/mpl/bind/dist/bin/tests/system/xferquota/setup.py up to 1.1.1.2 external/mpl/bind/dist/bin/tests/system/xferquota/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/xferquota/tests_xferquota.py up to 1.1.1.5 external/mpl/bind/dist/bin/tests/system/zero/setup.sh up to 1.1.1.7 external/mpl/bind/dist/bin/tests/system/zonechecks/setup.sh up to 1.1.1.8 external/mpl/bind/dist/bin/tools/Makefile.in up to 1.1.1.13 external/mpl/bind/dist/bin/tools/mdig.c up to 1.16 external/mpl/bind/dist/contrib/gitchangelog/gitchangelog.py up to 1.1.1.4 external/mpl/bind/dist/doc/Makefile.in up to 1.1.1.8 external/mpl/bind/dist/doc/arm/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/doc/arm/advanced.inc.rst up to 1.1.1.3 external/mpl/bind/dist/doc/arm/changelog.rst up to 1.1.1.6 external/mpl/bind/dist/doc/arm/conf.py up to 1.1.1.10 external/mpl/bind/dist/doc/arm/index.rst up to 1.1.1.6 external/mpl/bind/dist/doc/arm/notes.rst up to 1.1.1.14 external/mpl/bind/dist/doc/arm/pkcs11.inc.rst up to 1.1.1.4 external/mpl/bind/dist/doc/arm/platforms.inc.rst up to 1.1.1.6 external/mpl/bind/dist/doc/arm/reference.rst up to 1.1.1.14 external/mpl/bind/dist/doc/arm/troubleshooting.inc.rst up to 1.1.1.3 external/mpl/bind/dist/doc/arm/_ext/iscconf.py up to 1.1.1.4 external/mpl/bind/dist/doc/arm/_ext/mergegrammar.py up to 1.1.1.2 external/mpl/bind/dist/doc/arm/_ext/namedconf.py up to 1.1.1.2 external/mpl/bind/dist/doc/dnssec-guide/recipes.rst up to 1.1.1.7 external/mpl/bind/dist/doc/man/Makefile.in up to 1.1.1.9 external/mpl/bind/dist/doc/man/arpaname.1in up to 1.1.1.8 external/mpl/bind/dist/doc/man/conf.py up to 1.1.1.8 external/mpl/bind/dist/doc/man/ddns-confgen.8in up to 1.1.1.11 external/mpl/bind/dist/doc/man/delv.1in up to 1.1.1.11 external/mpl/bind/dist/doc/man/dig.1in up to 1.1.1.13 external/mpl/bind/dist/doc/man/dnssec-cds.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-dsfromkey.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-importkey.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-keyfromlabel.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-keygen.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-ksr.1in up to 1.1.1.4 external/mpl/bind/dist/doc/man/dnssec-revoke.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-settime.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-signzone.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnssec-verify.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/dnstap-read.1in up to 1.1.1.10 external/mpl/bind/dist/doc/man/filter-a.8in up to 1.1.1.6 external/mpl/bind/dist/doc/man/filter-aaaa.8in up to 1.1.1.11 external/mpl/bind/dist/doc/man/host.1in up to 1.1.1.11 external/mpl/bind/dist/doc/man/mdig.1in up to 1.1.1.11 external/mpl/bind/dist/doc/man/named-checkconf.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/named-checkzone.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/named-compilezone.1in up to 1.8 external/mpl/bind/dist/doc/man/named-journalprint.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/named-nzd2nzf.1in up to 1.1.1.6 external/mpl/bind/dist/doc/man/named-rrchecker.1in up to 1.1.1.11 external/mpl/bind/dist/doc/man/named.8in up to 1.1.1.10 external/mpl/bind/dist/doc/man/named.conf.5in up to 1.1.1.13 external/mpl/bind/dist/doc/man/nsec3hash.1in up to 1.1.1.5 external/mpl/bind/dist/doc/man/nslookup.1in up to 1.1.1.10 external/mpl/bind/dist/doc/man/nsupdate.1in up to 1.1.1.10 external/mpl/bind/dist/doc/man/rndc-confgen.8in up to 1.1.1.10 external/mpl/bind/dist/doc/man/rndc.8in up to 1.1.1.12 external/mpl/bind/dist/doc/man/rndc.conf.5in up to 1.1.1.11 external/mpl/bind/dist/doc/man/tsig-keygen.8in up to 1.1.1.9 external/mpl/bind/dist/doc/misc/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/doc/misc/checkgrammar.py up to 1.1.1.2 external/mpl/bind/dist/doc/misc/options up to 1.1.1.18 external/mpl/bind/dist/doc/misc/parsegrammar.py up to 1.1.1.2 external/mpl/bind/dist/fuzz/Makefile.in up to 1.1.1.10 external/mpl/bind/dist/fuzz/dns_qpkey_name.c up to 1.3 external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.c up to 1.9 external/mpl/bind/dist/fuzz/fuzz.h up to 1.9 external/mpl/bind/dist/fuzz/isc_lex_getmastertoken.c up to 1.4 external/mpl/bind/dist/fuzz/isc_lex_gettoken.c up to 1.4 external/mpl/bind/dist/lib/Makefile.in up to 1.1.1.8 external/mpl/bind/dist/lib/dns/Makefile.am up to 1.1.1.4 external/mpl/bind/dist/lib/dns/Makefile.in up to 1.1.1.16 external/mpl/bind/dist/lib/dns/acl.c up to 1.11 external/mpl/bind/dist/lib/dns/adb.c up to 1.17 external/mpl/bind/dist/lib/dns/catz.c up to 1.16 external/mpl/bind/dist/lib/dns/client.c up to 1.18 external/mpl/bind/dist/lib/dns/db.c up to 1.14 external/mpl/bind/dist/lib/dns/dbiterator.c up to 1.8 external/mpl/bind/dist/lib/dns/diff.c up to 1.12 external/mpl/bind/dist/lib/dns/dispatch.c up to 1.14 external/mpl/bind/dist/lib/dns/dnssec.c up to 1.19 external/mpl/bind/dist/lib/dns/dnstap.c up to 1.16 external/mpl/bind/dist/lib/dns/dst_api.c up to 1.18 external/mpl/bind/dist/lib/dns/dst_internal.h up to 1.11 external/mpl/bind/dist/lib/dns/dst_parse.c up to 1.14 external/mpl/bind/dist/lib/dns/dyndb.c up to 1.13 external/mpl/bind/dist/lib/dns/gssapictx.c up to 1.13 external/mpl/bind/dist/lib/dns/journal.c up to 1.15 external/mpl/bind/dist/lib/dns/kasp.c up to 1.9 external/mpl/bind/dist/lib/dns/keymgr.c up to 1.16 external/mpl/bind/dist/lib/dns/keystore.c up to 1.4 external/mpl/bind/dist/lib/dns/keytable.c up to 1.12 external/mpl/bind/dist/lib/dns/master.c up to 1.15 external/mpl/bind/dist/lib/dns/masterdump.c up to 1.19 external/mpl/bind/dist/lib/dns/message.c up to 1.22 external/mpl/bind/dist/lib/dns/nsec3.c up to 1.17 external/mpl/bind/dist/lib/dns/nta.c up to 1.14 external/mpl/bind/dist/lib/dns/openssl_link.c up to 1.13 external/mpl/bind/dist/lib/dns/opensslecdsa_link.c up to 1.10 external/mpl/bind/dist/lib/dns/openssleddsa_link.c up to 1.12 external/mpl/bind/dist/lib/dns/opensslrsa_link.c up to 1.13 external/mpl/bind/dist/lib/dns/private.c up to 1.12 external/mpl/bind/dist/lib/dns/qp.c up to 1.5 external/mpl/bind/dist/lib/dns/qp_p.h up to 1.3 external/mpl/bind/dist/lib/dns/qpcache.c up to 1.6 external/mpl/bind/dist/lib/dns/qpzone.c up to 1.5 external/mpl/bind/dist/lib/dns/rbt-cachedb.c up to 1.5 external/mpl/bind/dist/lib/dns/rbt-zonedb.c up to 1.5 external/mpl/bind/dist/lib/dns/rbt.c up to 1.18 external/mpl/bind/dist/lib/dns/rbtdb.c up to 1.24 external/mpl/bind/dist/lib/dns/rcode.c up to 1.15 external/mpl/bind/dist/lib/dns/rdata.c up to 1.19 external/mpl/bind/dist/lib/dns/rdataset.c up to 1.13 external/mpl/bind/dist/lib/dns/rdataslab.c up to 1.13 external/mpl/bind/dist/lib/dns/request.c up to 1.14 external/mpl/bind/dist/lib/dns/resconf.c up to 1.4 external/mpl/bind/dist/lib/dns/resolver.c up to 1.25 external/mpl/bind/dist/lib/dns/rpz.c up to 1.18 external/mpl/bind/dist/lib/dns/sdlz.c up to 1.15 external/mpl/bind/dist/lib/dns/skr.c up to 1.4 external/mpl/bind/dist/lib/dns/time.c up to 1.10 external/mpl/bind/dist/lib/dns/tkey.c up to 1.17 external/mpl/bind/dist/lib/dns/ttl.c up to 1.13 external/mpl/bind/dist/lib/dns/update.c up to 1.16 external/mpl/bind/dist/lib/dns/validator.c up to 1.20 external/mpl/bind/dist/lib/dns/view.c up to 1.21 external/mpl/bind/dist/lib/dns/xfrin.c up to 1.21 external/mpl/bind/dist/lib/dns/zone.c up to 1.27 external/mpl/bind/dist/lib/dns/include/dns/adb.h up to 1.11 external/mpl/bind/dist/lib/dns/include/dns/callbacks.h up to 1.8 external/mpl/bind/dist/lib/dns/include/dns/catz.h up to 1.10 external/mpl/bind/dist/lib/dns/include/dns/db.h up to 1.15 external/mpl/bind/dist/lib/dns/include/dns/dbiterator.h up to 1.9 external/mpl/bind/dist/lib/dns/include/dns/diff.h up to 1.9 external/mpl/bind/dist/lib/dns/include/dns/dnssec.h up to 1.13 external/mpl/bind/dist/lib/dns/include/dns/dnstap.h up to 1.11 external/mpl/bind/dist/lib/dns/include/dns/ds.h up to 1.10 external/mpl/bind/dist/lib/dns/include/dns/kasp.h up to 1.9 external/mpl/bind/dist/lib/dns/include/dns/keymgr.h up to 1.11 external/mpl/bind/dist/lib/dns/include/dns/librpz.h up to 1.12 external/mpl/bind/dist/lib/dns/include/dns/message.h up to 1.18 external/mpl/bind/dist/lib/dns/include/dns/nsec3.h up to 1.10 external/mpl/bind/dist/lib/dns/include/dns/qp.h up to 1.4 external/mpl/bind/dist/lib/dns/include/dns/rdataset.h up to 1.16 external/mpl/bind/dist/lib/dns/include/dns/resolver.h up to 1.12 external/mpl/bind/dist/lib/dns/include/dns/rpz.h up to 1.13 external/mpl/bind/dist/lib/dns/include/dns/rrl.h up to 1.9 external/mpl/bind/dist/lib/dns/include/dns/sdlz.h up to 1.9 external/mpl/bind/dist/lib/dns/include/dns/tkey.h up to 1.10 external/mpl/bind/dist/lib/dns/include/dns/types.h up to 1.12 external/mpl/bind/dist/lib/dns/include/dns/validator.h up to 1.14 external/mpl/bind/dist/lib/dns/include/dns/zone.h up to 1.16 external/mpl/bind/dist/lib/dns/include/dst/dst.h up to 1.14 external/mpl/bind/dist/lib/dns/rdata/any_255/tsig_250.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/ch_3/a_1.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/afsdb_18.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/amtrelay_260.c up to 1.9 external/mpl/bind/dist/lib/dns/rdata/generic/avc_258.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/caa_257.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/cdnskey_60.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/cds_59.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/cert_37.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/cname_5.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/csync_62.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/dlv_32769.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/dname_39.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/dnskey_48.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/doa_259.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/ds_43.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/eui48_108.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/eui64_109.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/gpos_27.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/hinfo_13.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/hip_55.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/ipseckey_45.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/isdn_20.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.16 external/mpl/bind/dist/lib/dns/rdata/generic/keydata_65533.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/l32_105.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/l64_106.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/loc_29.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/lp_107.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/mb_7.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/md_3.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/mf_4.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/mg_8.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/minfo_14.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/mr_9.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/mx_15.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/naptr_35.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/nid_104.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/ninfo_56.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/ns_2.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/nsec3_50.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/nsec_47.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/null_10.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/nxt_30.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/openpgpkey_61.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/opt_41.c up to 1.15 external/mpl/bind/dist/lib/dns/rdata/generic/ptr_12.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/resinfo_261.c up to 1.4 external/mpl/bind/dist/lib/dns/rdata/generic/rkey_57.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/rp_17.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/rrsig_46.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/rt_21.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/sig_24.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/sink_40.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/smimea_53.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/soa_6.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/spf_99.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/sshfp_44.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/ta_32768.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/talink_58.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/tkey_249.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/tlsa_52.c up to 1.13 external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/generic/uri_256.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/generic/wallet_262.c up to 1.3 external/mpl/bind/dist/lib/dns/rdata/generic/x25_19.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/generic/zonemd_63.c up to 1.8 external/mpl/bind/dist/lib/dns/rdata/hs_4/a_1.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/in_1/a6_38.c up to 1.11 external/mpl/bind/dist/lib/dns/rdata/in_1/a_1.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/aaaa_28.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/apl_42.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/atma_34.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/dhcid_49.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/eid_31.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/kx_36.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/nimloc_32.c up to 1.12 external/mpl/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/nsap_22.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/px_26.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/srv_33.c up to 1.10 external/mpl/bind/dist/lib/dns/rdata/in_1/svcb_64.c up to 1.7 external/mpl/bind/dist/lib/dns/rdata/in_1/wks_11.c up to 1.12 external/mpl/bind/dist/lib/isc/Makefile.am up to 1.1.1.3 external/mpl/bind/dist/lib/isc/Makefile.in up to 1.1.1.15 external/mpl/bind/dist/lib/isc/base32.c up to 1.10 external/mpl/bind/dist/lib/isc/base64.c up to 1.11 external/mpl/bind/dist/lib/isc/file.c up to 1.4 external/mpl/bind/dist/lib/isc/hash.c up to 1.10 external/mpl/bind/dist/lib/isc/hashmap.c up to 1.3 external/mpl/bind/dist/lib/isc/hex.c up to 1.11 external/mpl/bind/dist/lib/isc/httpd.c up to 1.12 external/mpl/bind/dist/lib/isc/jemalloc_shim.h up to 1.6 external/mpl/bind/dist/lib/isc/mem.c up to 1.19 external/mpl/bind/dist/lib/isc/net.c up to 1.5 external/mpl/bind/dist/lib/isc/os.c up to 1.6 external/mpl/bind/dist/lib/isc/picohttpparser.c up to 1.6 external/mpl/bind/dist/lib/isc/radix.c up to 1.12 external/mpl/bind/dist/lib/isc/random.c up to 1.9 external/mpl/bind/dist/lib/isc/result.c up to 1.15 external/mpl/bind/dist/lib/isc/tls.c up to 1.8 external/mpl/bind/dist/lib/isc/uv.c up to 1.3 external/mpl/bind/dist/lib/isc/work.c up to 1.4 external/mpl/bind/dist/lib/isc/include/isc/attributes.h up to 1.5 external/mpl/bind/dist/lib/isc/include/isc/base64.h up to 1.9 external/mpl/bind/dist/lib/isc/include/isc/hex.h up to 1.9 external/mpl/bind/dist/lib/isc/include/isc/iterated_hash.h up to 1.8 external/mpl/bind/dist/lib/isc/include/isc/log.h up to 1.10 external/mpl/bind/dist/lib/isc/include/isc/net.h up to 1.4 external/mpl/bind/dist/lib/isc/include/isc/netmgr.h up to 1.12 external/mpl/bind/dist/lib/isc/include/isc/nonce.h up to 1.6 external/mpl/bind/dist/lib/isc/include/isc/os.h up to 1.8 external/mpl/bind/dist/lib/isc/include/isc/overflow.h up to 1.3 external/mpl/bind/dist/lib/isc/include/isc/queue.h up to 1.9 external/mpl/bind/dist/lib/isc/include/isc/quota.h up to 1.12 external/mpl/bind/dist/lib/isc/include/isc/random.h up to 1.7 external/mpl/bind/dist/lib/isc/include/isc/refcount.h up to 1.9 external/mpl/bind/dist/lib/isc/include/isc/result.h up to 1.14 external/mpl/bind/dist/lib/isc/include/isc/types.h up to 1.15 external/mpl/bind/dist/lib/isc/include/isc/urcu.h up to 1.3 external/mpl/bind/dist/lib/isc/include/isc/util.h up to 1.19 external/mpl/bind/dist/lib/isc/netmgr/http.c up to 1.7 external/mpl/bind/dist/lib/isc/netmgr/netmgr-int.h up to 1.15 external/mpl/bind/dist/lib/isc/netmgr/netmgr.c up to 1.16 external/mpl/bind/dist/lib/isc/netmgr/socket.c up to 1.3 external/mpl/bind/dist/lib/isc/netmgr/streamdns.c up to 1.4 external/mpl/bind/dist/lib/isc/netmgr/tcp.c up to 1.14 external/mpl/bind/dist/lib/isc/netmgr/tlsstream.c up to 1.6 external/mpl/bind/dist/lib/isccc/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/lib/isccfg/Makefile.in up to 1.1.1.12 external/mpl/bind/dist/lib/isccfg/check.c up to 1.5 external/mpl/bind/dist/lib/isccfg/kaspconf.c up to 1.12 external/mpl/bind/dist/lib/isccfg/namedconf.c up to 1.20 external/mpl/bind/dist/lib/isccfg/parser.c up to 1.17 external/mpl/bind/dist/lib/isccfg/include/isccfg/check.h up to 1.3 external/mpl/bind/dist/lib/isccfg/include/isccfg/kaspconf.h up to 1.7 external/mpl/bind/dist/lib/ns/Makefile.in up to 1.12 external/mpl/bind/dist/lib/ns/client.c up to 1.28 external/mpl/bind/dist/lib/ns/hooks.c up to 1.12 external/mpl/bind/dist/lib/ns/query.c up to 1.27 external/mpl/bind/dist/lib/ns/update.c up to 1.20 external/mpl/bind/dist/lib/ns/xfrout.c up to 1.17 external/mpl/bind/dist/lib/ns/include/ns/client.h up to 1.21 external/mpl/bind/dist/lib/ns/include/ns/query.h up to 1.11 external/mpl/bind/dist/lib/ns/include/ns/server.h up to 1.12 external/mpl/bind/dist/m4/libtool.m4 up to 1.1.1.5 external/mpl/bind/dist/m4/ltoptions.m4 up to 1.1.1.3 external/mpl/bind/dist/m4/ltsugar.m4 up to 1.1.1.4 external/mpl/bind/dist/m4/ltversion.m4 up to 1.1.1.3 external/mpl/bind/dist/m4/lt~obsolete.m4 up to 1.1.1.4 external/mpl/bind/dist/tests/Makefile.in up to 1.1.1.6 external/mpl/bind/dist/tests/bench/Makefile.in up to 1.1.1.3 external/mpl/bind/dist/tests/bench/iterated_hash.c up to 1.3 external/mpl/bind/dist/tests/bench/load-names.c up to 1.3 external/mpl/bind/dist/tests/dns/Makefile.in up to 1.1.1.6 external/mpl/bind/dist/tests/dns/db_test.c up to 1.5 external/mpl/bind/dist/tests/dns/dbiterator_test.c up to 1.5 external/mpl/bind/dist/tests/dns/diff_test.c up to 1.3 external/mpl/bind/dist/tests/dns/dnstap_test.c up to 1.4 external/mpl/bind/dist/tests/dns/ede_test.c up to 1.3 external/mpl/bind/dist/tests/dns/master_test.c up to 1.4 external/mpl/bind/dist/tests/dns/qp_test.c up to 1.3 external/mpl/bind/dist/tests/dns/qpdb_test.c up to 1.3 external/mpl/bind/dist/tests/dns/qpmulti_test.c up to 1.3 external/mpl/bind/dist/tests/dns/qpzone_test.c up to 1.5 external/mpl/bind/dist/tests/dns/rdata_test.c up to 1.7 external/mpl/bind/dist/tests/dns/resolver_test.c up to 1.4 external/mpl/bind/dist/tests/dns/skr_test.c up to 1.4 external/mpl/bind/dist/tests/dns/tsig_test.c up to 1.7 external/mpl/bind/dist/tests/dns/update_test.c up to 1.4 external/mpl/bind/dist/tests/include/tests/isc.h up to 1.6 external/mpl/bind/dist/tests/isc/Makefile.am up to 1.1.1.3 external/mpl/bind/dist/tests/isc/Makefile.in up to 1.1.1.5 external/mpl/bind/dist/tests/isc/file_test.c up to 1.4 external/mpl/bind/dist/tests/isc/histo_test.c up to 1.3 external/mpl/bind/dist/tests/isc/mem_test.c up to 1.5 external/mpl/bind/dist/tests/isc/mutex_test.c up to 1.3 external/mpl/bind/dist/tests/isc/regex_test.c up to 1.4 external/mpl/bind/dist/tests/isc/rwlock_test.c up to 1.4 external/mpl/bind/dist/tests/isc/spinlock_test.c up to 1.3 external/mpl/bind/dist/tests/isc/work_test.c up to 1.3 external/mpl/bind/dist/tests/isccfg/Makefile.in up to 1.1.1.6 external/mpl/bind/dist/tests/libtest/Makefile.in up to 1.1.1.5 external/mpl/bind/dist/tests/libtest/qp.c up to 1.3 external/mpl/bind/dist/tests/ns/Makefile.in up to 1.1.1.5 external/mpl/bind/include/config.h up to 1.26 external/mpl/bind/include/dns/code.h up to 1.12 external/mpl/bind/include/dns/enumclass.h up to 1.9 external/mpl/bind/include/dns/enumtype.h up to 1.12 external/mpl/bind/include/dns/probes.h up to 1.3 external/mpl/bind/include/dns/rdatastruct.h up to 1.14 external/mpl/bind/include/ns/pfilter.h up to 1.2 external/mpl/bind/lib/Makefile.inc up to 1.4 external/mpl/bind/lib/libdns/dns.common.expsym up to 1.7 external/mpl/bind/lib/libdns/shlib_version up to 1.19 external/mpl/bind/lib/libisc/Makefile up to 1.25 external/mpl/bind/lib/libisccfg/isccfg.expsym up to 1.3 external/mpl/bind/lib/libisccfg/shlib_version up to 1.16
Update bind to version 9.20.22/MPL.
|
| 1.1.1.1.2.1 |
| 29-Jan-2026 |
martin | file named.conf.j2 was added on branch netbsd-11 on 2026-05-07 16:17:48 +0000
|