NetBSD/src N8Uz34hexternal/bsd/unbound/dist Makefile.in configure, external/bsd/unbound/dist/cachedb cachedb.c

   Import 1.9.1:

   1 March 2019: Wouter
        - output forwarder log in ssl_req_order test.

   28 February 2019: Wouter
        - Remove memory leak on pythonmod python2 script file init.
        - Remove swig gcc8 python function cast warnings, they are ignored.
        - Print correct module that failed when module-config is wrong.

   27 February 2019: Wouter
        - Fix #4229: Unbound man pages lack information, about access-control
          order and local zone tags, and elements in views.
        - Fix #14: contrib/unbound.init: Fix wrong comparison judgment
          before copying.
        - Fix for python module on Windows, fix fopen.

   25 February 2019: Wouter
        - Fix #4227: pair event del and add for libevent for tcp_req_info.

   21 February 2019: Wouter
        - Fix the error for unknown module in module-config is understandable,
          and explains it was not compiled in and where to see the list.
        - In example.conf explain where to put cachedb module in module-config.
        - In man page and example config explain that most modules have to
          be listed at the start of module-config.

   20 February 2019: Wouter
        - Fix pythonmod include and sockaddr_un ifdefs for compile on
          Windows, and for libunbound.

   18 February 2019: Wouter
        - Print query name with ip_ratelimit exceeded log lines.
        - Spaces instead of tabs in that log message.
        - Print query name and IP address when domain rate limit exceeded.

   14 February 2019: Wouter
        - Fix capsforid canonical sort qsort callback.

   11 February 2019: Wouter
        - Note default for module-config in man page.
        - Fix recursion lame test for qname minimisation asked queries,
          that were not present in the set of prepared answers.
        - Fix #13: Remove left-over requirements on OpenSSL >= 1.1.0 for
          cert name matching, from man page.
        - make depend, with newer gcc, nicer layout.

   7 February 2019: Wouter
        - Fix #4206: OpenSSL 1.0.2 hostname verification for FreeBSD 11.2.
        - Fix that qname minimisation does not skip a label when missing
          nameserver targets need to be fetched.
        - Fix #4225: clients seem to erroneously receive no answer with
          DNS-over-TLS and qname-minimisation.

   4 February 2019: Wouter
        - Fix that log-replies prints the correct name for local-alias
          names, for names that have a CNAME in local-data configuration.
          It logs the original query name, not the target of the CNAME.
        - Add local-zone type inform_redirect, which logs like type inform,
          and redirects like type redirect.
        - Perform canonical sort for 0x20 capsforid compare of replies,
          this sorts rrsets in the authority and additional section before
          comparison, so that out of order rrsets do not cause failure.

   31 January 2019: Wouter
        - Set ub_ctx_set_tls call signature in ltrace config file for
          libunbound in contrib/libunbound.so.conf.
        - improve documentation for tls-service-key and forward-first.
        - #10: fixed pkg-config operations, PKG_PROG_PKG_CONFIG moved out of
          conditional section, fixes systemd builds, from Enrico Scholz.
        - #9: For openssl 1.0.2 use the CRYPTO_THREADID locking callbacks,
          still supports the set_id_callback previous API.  And for 1.1.0
          no locking callbacks are needed.
        - #8: Fix OpenSSL without ENGINE support compilation.
        - Wipe TLS session key data from memory on exit.

   30 January 2019: Ralph
        - Fix case in which query timeout can result in marking delegation
          as edns_lame_known.

   29 January 2019: Wouter
        - Fix spelling of tls-ciphers in example.conf.in.
        - Fix #4224: auth_xfr_notify.rpl test broken due to typo
        - Fix locking for libunbound context setup with broken port config.

   28 January 2019: Wouter
        - ub_ctx_set_tls call for libunbound that enables DoT for the machines
          set with ub_ctx_set_fwd.  Patch from Florian Obser.
        - Set build system for added call in the libunbound API.
        - List example config for root zone copy locally hosted with auth-zone
          as suggested from draft-ietf-dnsop-7706-bis-02.  But with updated
          B root address.
        - set version to 1.9.0 for release.  And this was released with the
          spelling for tls-ciphers fix as 1.9.0 on Feb 5.  Trunk has 1.9.1 in
          development.

   25 January 2019: Wouter
        - Fix that tcp for auth zone and outgoing does not remove and
          then gets the ssl read again applied to the deleted commpoint.
        - updated contrib/fastrpz.patch to cleanly diff.
        - no lock when threads disabled in tcp request buffer count.
        - remove compile warnings from libnettle compile.
        - output of newer lex 2.6.1 and bison 3.0.5.

   24 January 2019: Wouter
        - Newer aclocal and libtoolize used for generating configure scripts,
          aclocal 1.16.1 and libtoolize 2.4.6.
        - Fix unit test for python 3.7 new keyword 'async'.
        - clang analysis fixes, assert arc4random buffer in init,
          no check for already checked delegation pointer in iterator,
          in testcode check for NULL packet matches, in perf do not copy
          from NULL start list when growing capacity.  Adjust host and file
          only when present in test header read to please checker.  In
          testcode for unknown macro operand give zero result. Initialise the
          passed argv array in test code.  In test code add EDNS data
          segment copy only when nonempty.
        - Patch from Florian Obser fixes some compiler warnings:
          include mini_event.h to have a prototype for mini_ev_cmp
          include edns.h to have a prototype for apply_edns_options
          sldns_wire2str_edns_keepalive_print is only called in the wire2str,
          module declare it static to get rid of compiler warning:
          no previous prototype for function
          infra_find_ip_ratedata() is only called in the infra module,
          declare it static to get rid of compiler warning:
          no previous prototype for function
          do not shadow local variable buf in authzone
          auth_chunks_delete and az_nsec3_findnode are only called in the
          authzone module, declare them static to get rid of compiler warning:
          no previous prototype for function...
          copy_rrset() is only called in the respip module, declare it
          static to get rid of compiler warning:
          no previous prototype for function 'copy_rrset'
          no need for another variable "r"; gets rid of compiler warning:
          declaration shadows a local variable in libunbound.c
          no need for another variable "ns"; gets rid of compiler warning:
          declaration shadows a local variable in iterator.c
        - Moved includes and make depend.

   23 January 2019: Wouter
        - Patch from Manabu Sonoda with tls-ciphers and tls-ciphersuites
          options for unbound.conf.
        - Fixes for the patch, and man page entry.
        - Fix configure to detect SSL_CTX_set_ciphersuites, for better
          library compatibility when compiling.
        - Patch for TLS session resumption from Manabu Sonoda,
          enable with tls-session-ticket-keys in unbound.conf.
        - Fixes for patch (includes, declarations, warnings).  Free at end
          and keep config options in order read from file to keep the first
          one as the first one.
        - Fix for IXFR fallback to reset counter when IXFR does not timeout.

   22 January 2019: Wouter
        - Fix space calculation for tcp req buffer size.
        - Doc for stream-wait-size and unit test.
        - unbound-control stats has mem.streamwait that counts TCP and TLS
          waiting result buffers.
        - Fix for #4219: secondaries not updated after serial change, unbound
          falls back to AXFR after IXFR gives several timeout failures.
        - Fix that auth zone after IXFR fallback tries the same master.

   21 January 2019: Wouter
        - Fix tcp idle timeout test, for difference in the tcp reply code.
        - Unit test for tcp request reorder and timeouts.
        - Unit tests for ssl out of order processing.
        - Fix that multiple dns fragments can be carried in one TLS frame.
        - Add stream-wait-size: 4m config option to limit the maximum
          memory used by waiting tcp and tls stream replies.  This avoids
          a denial of service where these replies use up all of the memory.

   17 January 2019: Wouter
        - For caps-for-id fallback, use the whitelist to avoid timeout
          starting a fallback sequence for it.
        - increase mesh max activation count for capsforid long fetches.

   16 January 2019: Ralph
        - Get ready for the DNS flag day: remove EDNS lame procedure, do not
          re-query without EDNS after timeout.

   15 January 2019: Wouter
        - In the out of order processing, reset byte count for (potential)
          partial read.
        - Review fixes in out of order processing.

   14 January 2019: Wouter
        - streamtcp option -a send queries consecutively and prints answers
          as they arrive.
        - Fix for out of order processing administration quit cleanup.
        - unit test for tcp out of order processing.

   11 January 2019: Wouter
        - Initial commit for out-of-order processing for TCP and TLS.

   9 January 2019: Wouter
        - Log query name for looping module errors.

   8 January 2019: Wouter
        - Fix syntax in comment of local alias processing.
        - Fix NSEC3 record that is returned in wildcard replies from
          auth-zone zones with NSEC3 and wildcards.

   7 January 2019: Wouter
        - On FreeBSD warn if systcl settings do not allow server TCP FASTOPEN,
          and server tcp fastopen is enabled at compile time.
        - Document interaction between the tls-upstream option in the server
          section and forward-tls-upstream option in the forward-zone sections.
        - Add contrib/unbound-fuzzme.patch from Jacob Hoffman-Andrews,
          the patch adds a program used for fuzzing.

   12 December 2018: Wouter
        - Fix for crash in dns64 module if response is null.

   10 December 2018: Wouter
        - Fix config parser memory leaks.
        - ip-ratelimit-factor of 1 allows all traffic through, instead of the
          previous blocking everything.
        - Fix for FreeBSD port make with dnscrypt and dnstap enabled.
        - Fix #4206: support openssl 1.0.2 for TLS hostname verification,
          alongside the 1.1.0 and later support that is already there.
        - Fixup openssl 1.0.2 compile

   6 December 2018: Wouter
        - Fix dns64 allocation in wrong region for returned internal queries.

   3 December 2018: Wouter
        - Fix icon, no ragged edges and nicer resolutions available, for eg.
          Win 7 and Windows 10 display.
        - cache-max-ttl also defines upperbound of initial TTL in response.

   30 November 2018: Wouter
        - Patch for typo in unbound.conf man page.
        - log-tag-queryreply: yes in unbound.conf tags the log-queries and
          log-replies in the log file for easier log filter maintenance.

   29 November 2018: Wouter
        - iana portlist updated.
        - Fix chroot auth-zone fix to remove chroot prefix.
        - tag for 1.8.2rc1, which became 1.8.2 on 4 dec 2018, with icon
          updated.  Trunk contains 1.8.3 in development.
          Which became 1.8.3 on 11 december with only the dns64 fix of 6 dec.
          Trunk then became 1.8.4 in development.
        - Fix that unbound-checkconf does not complains if the config file
          is not placed inside the chroot.
        - Refuse to start with no ports.
        - Remove clang analysis warnings.

   28 November 2018: Wouter
        - Fix leak in chroot fix for auth-zone.
        - Fix clang analysis for outside directory build test.

   27 November 2018: Wouter
        - Fix DNS64 to not store intermediate results in cache, this avoids
          other threads from picking up the wrong data.  The module restores
          the previous no_cache_store setting when the the module is finished.
        - Fix #4208: 'stub-no-cache' and 'forward-no-cache' not work.
        - New and better fix for Fix #4193: Fix that prefetch failure does
          not overwrite valid cache entry with SERVFAIL.
        - auth-zone give SERVFAIL when expired, fallback activates when
          expired, and this is documented in the man page.
        - stat count SERVFAIL downstream auth-zone queries for expired zones.
        - Put new logos into windows installer.
        - Fix windows compile for new rrset roundrobin fix.
        - Update contrib fastrpz patch for latest release.

   26 November 2018: Wouter
        - Fix to not set GLOB_NOSORT so the unbound.conf include: files are
          sorted and in a predictable order.
        - Fix #4193: Fix that prefetch failure does not overwrite valid cache
          entry with SERVFAIL.
        - Add unbound-control view_local_datas command, like local_datas.
        - Fix that unbound-control can send file for view_local_datas.

   22 November 2018: Wouter
        - With ./configure --with-pyunbound --with-pythonmodule
          PYTHON_VERSION=3.6 or with 2.7 unbound can compile and unit tests
          succeed for the python module.
        - pythonmod logs the python error and traceback on failure.
        - ignore debug python module for test in doxygen output.
        - review fixes for python module.
        - Fix #4209: Crash in libunbound when called from getdns.
        - auth zone zonefiles can be in a chroot, the chroot directory
          components are removed before use.
        - Fix that empty zonefile means the zonefile is not set and not used.
        - make depend.

   21 November 2018: Wouter
        - Scrub NS records from NODATA responses as well.

   20 November 2018: Wouter
        - Scrub NS records from NXDOMAIN responses to stop fragmentation
          poisoning of the cache.
        - Add patch from Jan Vcelak for pythonmod,
          add sockaddr_storage getters, add support for query callbacks,
          allow raw address access via comm_reply and update API documentation.
        - Removed compile warnings in pythonmod sockaddr routines.

   19 November 2018: Wouter
        - Support SO_REUSEPORT_LB in FreeBSD 12 with the so-reuseport: yes
          option in unbound.conf.

   6 November 2018: Ralph
        - Bugfix min-client-subnet-ipv6

   25 October 2018: Ralph
        - Add min-client-subnet-ipv6 and min-client-subnet-ipv4 options.

   25 October 2018: Wouter
        - Fix #4191: NXDOMAIN vs SERVFAIL during dns64 PTR query.
        - Fix #4190: Please create a "ANY" deny option, adds the option
          deny-any: yes in unbound.conf.  This responds with an empty message
          to queries of type ANY.
        - Fix #4141: More randomness to rrset-roundrobin.
        - Fix #4132: Openness/closeness of RANGE intervals in rpl files.
        - Fix #4126: RTT_band too low on VSAT links with 600+ms latency,
          adds the option unknown-server-time-limit to unbound.conf that
          can be increased to avoid the problem.
        - remade makefile dependencies.
        - Fix #4152: Logs shows wrong time when using log-time-ascii: yes.

   24 October 2018: Ralph
        - Add markdel function to ECS slabhash.
        - Limit ECS scope returned to client to the scope used for caching.
        - Make lint like previous #4154 fix.

   22 October 2018: Wouter
        - Fix #4192: unbound-control-setup generates keys not readable by
          group.
        - check that the dnstap socket file can be opened and exists, print
          error if not.
        - Fix #4154: make ECS_MAX_TREESIZE configurable, with
          the max-ecs-tree-size-ipv4 and max-ecs-tree-size-ipv6 options.

   22 October 2018: Ralph
        - Change fast-server-num default to 3.

   8 October 2018: Ralph
        - Add fast-server-permil and fast-server-num options.
        - Deprecate low-rtt and low-rtt-permil options.

   8 October 2018: Wouter
        - Squelch log of failed to tcp initiate after TCP Fastopen failure.

   5 October 2018: Wouter
        - Squelch EADDRNOTAVAIL errors when the interface goes away,
          this omits 'can't assign requested address' errors unless
          verbosity is set to a high value.
        - Set default for so-reuseport to no for FreeBSD.  It is enabled
          by default for Linux and DragonFlyBSD.  The setting can
          be configured in unbound.conf to override the default.
        - iana port update.

   2 October 2018: Wouter
        - updated contrib/fastrpz.patch to apply for this version
        - dnscrypt.c removed sizeof to get array bounds.
        - Fix testlock code to set noreturn on error routine.
        - Remove unused variable from contrib fastrpz/rpz.c and
          remove unused diagnostic pragmas that themselves generate warnings
        - clang analyze test is used only when assertions are enabled.

   1 October 2018: Wouter
        - tag for release 1.8.1rc1.  Became release 1.8.1 on 8 oct, with
          fastrpz.patch fix included.  Trunk has 1.8.2 in development.

   27 September 2018: Wouter
        - Fix #4188: IPv6 forwarders without ipv6 result in SERVFAIL, fixes
          qname minimisation with a forwarder when connectivity has issues
          from rejecting responses.

   25 September 2018: Wouter
        - Perform TLS SNI indication of the host that is being contacted
          for DNS over TLS service.  It sets the configured tls auth name.
          This is useful for hosts that apart from the DNS over TLS services
          also provide other (web) services.
        - Fix #4149: Add SSL cleanup for tcp timeout.

   17 September 2018: Wouter
        - Fix compile on Mac for unbound, provide explicit_bzero when libc
          does not have it.
        - Fix unbound for openssl in FIPS mode, it uses the digests with
          the EVP call contexts.
        - Fix that with harden-below-nxdomain and qname minisation enabled
          some iterator states for nonresponsive domains can get into a
          state where they waited for an empty list.
        - Stop UDP to TCP failover after timeouts that causes the ping count
          to be reset by the TCP time measurement (that exists for TLS),
          because that causes the UDP part to not be measured as timeout.
        - Fix #4156: Fix systemd service manager state change notification.

   13 September 2018: Wouter
        - Fix seed for random backup code to use explicit zero when wiped.
        - exit log routine is annotated as noreturn function.
        - free memory leaks in config strlist and str2list insert functions.
        - do not move unused argv variable after getopt.
        - Remove unused if clause in testcode.
        - in testcode, free async ids, initialise array, and check for null
          pointer during test of the test.  And use exit for return to note
          irregular program stop.
        - Free memory leak in config strlist append.
        - make sure nsec3 comparison salt is initialized.
        - unit test has clang analysis.
        - remove unused variable assignment from iterator scrub routine.
        - check for null in delegation point during iterator refetch
          in forward zone.
        - neater pointer cast in libunbound context quit routine.
        - initialize statistics totals for printout.
        - in authzone check that node exists before adding rrset.
        - in unbound-anchor, use readwrite memory BIO.
        - assertion in autotrust that packed rrset is formed correctly.
        - Fix memory leak when message parse fails partway through copy.
        - remove unused udpsize assignment in message encode.
        - nicer bio free code in unbound-anchor.
        - annotate exit functions with noreturn in unbound-control.

   11 September 2018: Wouter
        - Fixed unused return value warnings in contrib/fastrpz.patch for
          asprintf.
        - Fix to squelch respip warning in unit test, it is printed at
          higher verbosity settings.
        - Fix spelling errors.
        - Fix initialisation in remote.c

   10 September 2018: Wouter
        - 1.8.1 in svn trunk. (changes from 4,5,.. sep apply).
        - iana port update.

   5 September 2018: Wouter
        - Fix spelling error in header, from getdns commit by Andreas Gelmini.

   4 September 2018: Ralph
        - More explicitly mention the type of ratelimit when applying
          ip-ratelimit.

   4 September 2018: Wouter
        - Tag for 1.8.0rc1 release, became 1.8.0 release on 10 Sep 2018.

   31 August 2018: Wouter
        - Disable minimal-responses in subnet unit tests.

   30 August 2018: Wouter
        - Fix that a local-zone with a local-zone-type that is transparent
          in a view with view-first, makes queries check for answers from the
          local-zones defined outside of views.

   28 August 2018: Ralph
        - Disable minimal-responses in ipsecmod unit tests.
        - Added serve-expired-ttl and serve-expired-ttl-reset options.

   27 August 2018: Wouter
        - Set defaults to yes for a number of options to increase speed and
          resilience of the server.  The so-reuseport, harden-below-nxdomain,
          and minimal-responses options are enabled by default.  They used
          to be disabled by default, waiting to make sure they worked.  They
          are enabled by default now, and can be disabled explicitly by
          setting them to "no" in the unbound.conf config file.  The reuseport
          and minimal options increases speed of the server, and should be
          otherwise harmless.  The harden-below-nxdomain option works well
          together with the recently default enabled qname minimisation, this
          causes more fetches to use information from the cache.
        - next release is called 1.8.0.
        - Fix lintflags for lint on FreeBSD.

   22 August 2018: George
        - #4140: Expose repinfo (comm_reply) to the inplace_callbacks. This
          gives access to reply information for the client's communication
          point when the callback is called before the mesh state (modules).
          Changes to C and Python's inplace_callback signatures were also
          necessary.

   21 August 2018: Wouter
        - log-local-actions: yes option for unbound.conf that logs all the
          local zone actions, a patch from Saksham Manchanda (Secure64).
        - #4146: num.query.subnet and num.query.subnet_cache counters.
        - Fix only misc failure from log-servfail when val-log-level is not
          enabled.

   17 August 2018: Ralph
        - Fix classification for QTYPE=CNAME queries when QNAME minimisation is
          enabled.

   17 August 2018: Wouter
        - Set libunbound to increase current, because the libunbound change
          to the event callback function signature.  That needs programs,
          that use it, to recompile against the new header definition.
        - print servfail info to log as error.
        - added more servfail printout statements, to the iterator.
        - log-servfail: yes prints log lines that say why queries are
          returning SERVFAIL to clients.

   16 August 2018: Wouter
        - Fix warning on compile without threads.
        - Fix contrib/fastrpz.patch.

   15 August 2018: Wouter
        - Fix segfault in auth-zone read and reorder of RRSIGs.

   14 August 2018: Wouter
        - Fix that printout of error for cycle targets is a verbosity 4
          printout and does not wrongly print it is a memory error.
        - Upgraded crosscompile script to include libunbound DLL in the
          zipfile.

   10 August 2018: Wouter
        - Fix #4144: dns64 module caches wrong (negative) information.

   9 August 2018: Wouter
        - unbound-checkconf checks if modules exist and prints if they are
          not compiled in the name of the wrong module.
        - document --enable-subnet in doc/README.
        - Patch for stub-no-cache and forward-no-cache options that disable
          caching for the contents of that stub or forward, for when you
          want immediate changes visible, from Bjoern A. Zeeb.

   7 August 2018: Ralph
        - Make capsforid fallback QNAME minimisation aware.

   7 August 2018: Wouter
        - Fix #4142: unbound.service.in: improvements and fixes.
          Add unit dependency ordering (based on systemd-resolved).
          Add 'CAP_SYS_RESOURCE' to 'CapabilityBoundingSet' (fixes warnings
          about missing privileges during startup). Add 'AF_INET6' to
          'RestrictAddressFamilies' (without it IPV6 can't work). From
          Guido Shanahan.
        - Patch to implement tcp-connection-limit from Jim Hague (Sinodun).
          This limits the number of simultaneous TCP client connections
          from a nominated netblock.
        - make depend, yacc, lex, doc, headers.  And log the limit exceeded
          message only on high verbosity, so as to not spam the logs when
          it is busy.

   6 August 2018: Wouter
        - Fix for #4136: Fix to unconditionally call destroy in daemon.c.

   3 August 2018: George
        - Expose if a query (or a subquery) was ratelimited (not src IP
          ratelimiting) to libunbound under 'ub_result.was_ratelimited'.
          This also introduces a change to 'ub_event_callback_type' in
          libunbound/unbound-event.h.
        - Tidy pylib tests.

   3 August 2018: Wouter
        - Revert previous change for #4136: because it introduces build
          problems.
        - New fix for #4136: This one ignores lex without without
          yylex_destroy.

   1 August 2018: Wouter
        - Fix to remove systemd sockaddr function check, that is not
          always present.  Make socket activation more lenient.  But not
          different when socket activation is not used.
        - iana port list update.

   31 July 2018: Wouter
        - Patches from Jim Hague (Sinodun) for EDNS KeepAlive.
        - Sort out test runs when the build directory isn't the project
          root directory.
        - Add config tcp-idle-timeout (default 30s). This applies to
          client connections only; the timeout on TCP connections upstream
          is unaffected.
        - Error if EDNS Keepalive received over UDP.
        - Add edns-tcp-keepalive and edns-tcp-keepalive timeout options
          and implement option in client responses.
        - Correct and expand manual page entries for keepalive and idle timeout.
        - Implement progressive backoff of TCP idle/keepalive timeout.
        - Fix 'make depend' to work when build dir is not project root.
        - Add delay parameter to streamtcp, -d secs.
          To be used when testing idle timeout.
        - From Wouter: make depend, the dependencies in the patches did not
          apply cleanly.  Also remade yacc and lex.
        - Fix mesh.c incompatible pointer pass.
        - Please doxygen so it passes.
        - Fix #4139: Fix unbound-host leaks memory on ANY.

   30 July 2018: Wouter
        - Fix #4136: insufficiency from mismatch of FLEX capability between
          released tarball and build host.

   27 July 2018: Wouter
        - Fix man page, say that chroot is enabled by default.

   26 July 2018: Wouter
        - Fix #4135: 64-bit Windows Installer Creates Entries Under The
          Wrong Registry Key, reported by Brian White.

   23 July 2018: Wouter
        - Fix use-systemd readiness signalling, only when use-systemd is yes
          and not in signal handler.

   20 July 2018: Wouter
        - Fix #4130: print text describing -dd and unbound-checkconf on
          config file read error at startup, the errors may have been moved
          away by the startup process.
        - Fix #4131: for solaris, error YY_CURRENT_BUFFER undeclared.

   19 July 2018: Wouter
        - Fix #4129 unbound-control error message with wrong cert permissions
          is too cryptic.

   17 July 2018: Wouter
        - Fix #4127 unbound -h does not list -p help.
        - Print error if SSL name verification configured but not available
          in the ssl library.
        - Fix that ratelimit and ip-ratelimit are applied after reload of
          changed config file.
        - Resize ratelimit and ip-ratelimit caches if changed on reload.

   16 July 2018: Wouter
        - Fix qname minimisation NXDOMAIN validation lookup failures causing
          error_supers assertion fails.
        - Squelch can't bind socket errors with Permission denied unless
          verbosity is 4 or higher, for UDP outgoing sockets.

   12 July 2018: Wouter
        - Fix to improve systemd socket activation code file descriptor
          assignment.
        - Fix for 4126 that the #define for UNKNOWN_SERVER_NICENESS can be more
          easily changed to adjust default rtt assumptions.

   10 July 2018: Wouter
        - Note in documentation that the cert name match code needs
          OpenSSL 1.1.0 or later to be enabled.

   6 July 2018: Wouter
        - Fix documentation ambiguity for tls-win-cert in tls-upstream and
          forward-tls-upstream docs.
        - iana port update.
        - Note RFC8162 support.  SMIMEA record type can be read in by the
          zone record parser.
        - Fix round robin for failed addresses with prefer-ip6: yes

   4 July 2018: Wouter
        - Fix #4112: Fix that unbound-anchor -f /etc/resolv.conf will not pass
          if DNSSEC is not enabled.  New option -R allows fallback from
          resolv.conf to direct queries.

   3 July 2018: Wouter
        - Better documentation for unblock-lan-zones and insecure-lan-zones
          config statements.
        - Fix permission denied printed for auth zone probe random port nrs.

   2 July 2018: Wouter
        - Fix checking for libhiredis printout in configure output.
        - Fix typo on man page in ip-address description.
        - Update libunbound/python/examples/dnssec_test.py example code to
          also set the 20326 trust anchor for the root in the example code.

   29 June 2018: Wouter
        - dns64-ignore-aaaa: config option to list domain names for which the
          existing AAAA is ignored and dns64 processing is used on the A
          record.

   28 June 2018: Wouter
        - num.queries.tls counter for queries over TLS.
        - log port number with err_addr logs.

   27 June 2018: Wouter
        - #4109: Fix that package config depends on python unconditionally.
        - Patch, do not export python from pkg-config, from Petr Menšík.

   26 June 2018: Wouter
        - Partial fix for permission denied on IPv6 address on FreeBSD.
        - Fix that auth-zone master reply with current SOA serial does not
          stop scan of masters for an updated zone.
        - Fix that auth-zone does not start the wait timer without checking
          if the wait timer has already been started.

   21 June 2018: Wouter
        - #4108: systemd reload hang fix.
        - Fix usage printout for unbound-host, hostname has to be last
          argument on BSDs and Windows.
VersionDeltaFile
1.1.1.4+3,389-3,006external/bsd/unbound/dist/util/configlexer.c
1.1.1.4+2,145-1,697external/bsd/unbound/dist/util/configparser.c
1.1.1.4+483-538external/bsd/unbound/dist/Makefile.in
1.1.1.4+490-442external/bsd/unbound/dist/util/configparser.h
1.1.1.4+679-1external/bsd/unbound/dist/doc/Changelog
1.1.1.4+439-6external/bsd/unbound/dist/services/listen_dnsport.c
1.1.1.4+260-155external/bsd/unbound/dist/configure
1.1.1.4+313-35external/bsd/unbound/dist/util/configparser.y
1.1+341-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.test
1.1+341-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.test
1.1.1.4+280-48external/bsd/unbound/dist/pythonmod/interface.i
1.1.1.3+148-157external/bsd/unbound/dist/contrib/fastrpz.patch
1.1.1.3+193-83external/bsd/unbound/dist/services/authzone.c
1.1.1.4+210-51external/bsd/unbound/dist/doc/unbound.conf.5.in
1.1.1.4+192-19external/bsd/unbound/dist/iterator/iterator.c
1.1.1.4+195-14external/bsd/unbound/dist/iterator/iter_utils.c
1.1.1.3+177-28external/bsd/unbound/dist/dns64/dns64.c
1.1+203-0external/bsd/unbound/dist/testdata/auth_nsec3_wild.rpl
1.1.1.4+122-74external/bsd/unbound/dist/daemon/worker.c
1.1+194-0external/bsd/unbound/dist/util/tcp_conn_limit.c
1.1.1.4+186-1external/bsd/unbound/dist/util/net_help.c
1.1.1.3+168-12external/bsd/unbound/dist/pythonmod/pythonmod.c
1.1.1.4+98-78external/bsd/unbound/dist/services/outside_network.c
1.1.1.4+143-23external/bsd/unbound/dist/util/netevent.c
1.1.1.4+115-45external/bsd/unbound/dist/services/mesh.c
1.1.1.2+136-19external/bsd/unbound/dist/testdata/pylib.tdir/pylib.lookup.py
1.1.1.4+106-46external/bsd/unbound/dist/services/localzone.c
1.1.1.4+126-23external/bsd/unbound/dist/util/config_file.c
1.1+148-0external/bsd/unbound/dist/contrib/unbound-fuzzme.patch
1.1.1.3+137-3external/bsd/unbound/dist/services/listen_dnsport.h
1.1+136-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.test
1.1+136-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.test
1.1+130-0external/bsd/unbound/dist/util/tcp_conn_limit.h
1.1.1.2+112-15external/bsd/unbound/dist/pythonmod/examples/inplace_callbacks.py
1.1+126-0external/bsd/unbound/dist/testdata/edns_keepalive.rpl
1.1.1.4+95-18external/bsd/unbound/dist/doc/example.conf.in
1.1.1.4+106-3external/bsd/unbound/dist/daemon/remote.c
1.1+100-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.test
1.1.1.3+58-36external/bsd/unbound/dist/smallapp/unbound-anchor.c
1.1.1.4+77-12external/bsd/unbound/dist/configure.ac
1.1.1.4+79-8external/bsd/unbound/dist/testcode/streamtcp.c
1.1+83-0external/bsd/unbound/dist/util/edns.c
1.1+82-0external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.test
1.1.1.4+69-13external/bsd/unbound/dist/services/cache/infra.c
1.1.1.2+80-0external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.testns
1.1.1.4+62-16external/bsd/unbound/dist/smallapp/unbound-checkconf.c
1.1+78-0external/bsd/unbound/dist/testdata/fwd_no_cache.rpl
1.1+74-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.testns
1.1+74-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.testns
1.1.1.3+59-11external/bsd/unbound/dist/edns-subnet/subnetmod.c
1.1.1.4+37-32external/bsd/unbound/dist/libunbound/libworker.c
1.1.1.4+62-6external/bsd/unbound/dist/util/config_file.h
1.1+67-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.test
1.1.1.3+65-0external/bsd/unbound/dist/testdata/subnet_max_source.crpl
1.1+63-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.testns
1.1+63-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.testns
1.1+63-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.testns
1.1+62-0external/bsd/unbound/dist/util/edns.h
1.1.1.4+46-16external/bsd/unbound/dist/validator/val_secalgo.c
1.1.1.2+53-8external/bsd/unbound/dist/pythonmod/doc/examples/example6.rst
1.1.1.4+40-21external/bsd/unbound/dist/util/data/msgreply.c
1.1.1.4+53-1external/bsd/unbound/dist/daemon/stats.c
1.1.1.2+42-10external/bsd/unbound/dist/testdata/pylib.tdir/pylib.test
1.1.1.4+44-8external/bsd/unbound/dist/smallapp/unbound-control.c
1.1.1.4+28-23external/bsd/unbound/dist/testcode/unitverify.c
1.1.1.2+26-23external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.py
1.1.1.4+39-6external/bsd/unbound/dist/testcode/fake_event.c
1.1+42-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.test
1.1+42-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.testns
1.1.1.4+30-12external/bsd/unbound/dist/util/module.h
1.1+42-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.testns
1.1.1.4+41-1external/bsd/unbound/dist/config.h.in
1.1.1.4+28-13external/bsd/unbound/dist/iterator/iter_scrub.c
1.1.1.4+22-17external/bsd/unbound/dist/daemon/daemon.c
1.1.1.4+21-17external/bsd/unbound/dist/libunbound/context.c
1.1.1.2+21-17external/bsd/unbound/dist/testdata/pymod.tdir/pymod.py
1.1.1.4+36-1external/bsd/unbound/dist/doc/unbound-control.8.in
1.1.1.4+36-0external/bsd/unbound/dist/util/net_help.h
1.1.1.4+24-11external/bsd/unbound/dist/validator/validator.c
1.1.1.3+29-4external/bsd/unbound/dist/pythonmod/doc/modules/functions.rst
1.1.1.4+28-5external/bsd/unbound/dist/util/configlexer.lex
1.1+31-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.pre
1.1+31-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.pre
1.1+31-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.pre
1.1+31-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.pre
1.1+31-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.pre
1.1+31-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.pre
1.1+31-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.pre
1.1.1.3+30-0external/bsd/unbound/dist/pythonmod/doc/modules/struct.rst
1.1.1.4+19-10external/bsd/unbound/dist/util/log.c
1.1.1.4+28-0external/bsd/unbound/dist/libunbound/unbound.h
1.1.1.4+24-3external/bsd/unbound/dist/daemon/unbound.c
1.1.1.4+16-10external/bsd/unbound/dist/libunbound/libunbound.c
1.1+25-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.conf
1.1+25-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.conf
1.1+25-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.conf
1.1.1.3+21-3external/bsd/unbound/dist/testcode/unitauth.c
1.1.1.3+19-5external/bsd/unbound/dist/services/authzone.h
1.1.1.3+17-7external/bsd/unbound/dist/testcode/petal.c
1.1.1.4+17-6external/bsd/unbound/dist/util/data/msgreply.h
1.1.1.3+15-8external/bsd/unbound/dist/util/log.h
1.1.1.2+14-9external/bsd/unbound/dist/testcode/unitmsgparse.c
1.1.1.4+14-8external/bsd/unbound/dist/testcode/asynclook.c
1.1+22-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.conf
1.1+22-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.conf
1.1.1.3+16-6external/bsd/unbound/dist/services/mesh.h
1.1.1.2+21-0external/bsd/unbound/dist/testdata/iter_reclame_two.rpl
1.1.1.2+10-10external/bsd/unbound/dist/pythonmod/examples/resip.py
1.1.1.2+15-5external/bsd/unbound/dist/testcode/unitldns.c
1.1.1.4+18-1external/bsd/unbound/dist/util/netevent.h
1.1.1.2+16-2external/bsd/unbound/dist/libunbound/python/libunbound.i
1.1.1.2+11-6external/bsd/unbound/dist/respip/respip.c
1.1.1.3+17-0external/bsd/unbound/dist/dnstap/dnstap.c
1.1.1.4+16-1external/bsd/unbound/dist/services/cache/dns.c
1.1.1.3+9-7external/bsd/unbound/dist/testcode/perf.c
1.1.1.4+12-4external/bsd/unbound/dist/testcode/replay.c
1.1+16-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.dsc
1.1+16-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.conf
1.1+16-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.dsc
1.1+16-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.dsc
1.1.1.2+16-0external/bsd/unbound/dist/winrc/service.conf
1.1+16-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.dsc
1.1+16-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.dsc
1.1+16-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.dsc
1.1+16-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.conf
1.1+16-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.dsc
1.1+15-0external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.dsc
1.1+15-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/unbound_server.key
1.1+15-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/unbound_server.key
1.1.1.4+12-2external/bsd/unbound/dist/doc/libunbound.3.in
1.1+14-0external/bsd/unbound/dist/testdata/pylib.tdir/pylib.lookup.conf
1.1.1.2+8-5external/bsd/unbound/dist/testdata/pylib.tdir/pylib.pre
1.1.1.3+13-0external/bsd/unbound/dist/util/storage/slabhash.c
1.1+12-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.post
1.1.1.3+8-4external/bsd/unbound/dist/validator/val_nsec3.c
1.1.1.3+6-6external/bsd/unbound/dist/testdata/black_key_entry.rpl
1.1.1.3+6-6external/bsd/unbound/dist/testdata/black_ds_entry.rpl
1.1.1.4+12-0external/bsd/unbound/dist/services/cache/dns.h
1.1+12-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.post
1.1+12-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.post
1.1.1.3+10-1external/bsd/unbound/dist/pythonmod/pythonmod.h
1.1+11-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/unbound_server.pem
1.1.1.2+11-0external/bsd/unbound/dist/testdata/iter_ranoaa_lame.rpl
1.1+11-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.post
1.1+11-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.post
1.1+11-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/unbound_server.pem
1.1.1.3+6-5external/bsd/unbound/dist/testdata/ttl_max.rpl
1.1.1.2+11-0external/bsd/unbound/dist/testcode/streamtcp.1
1.1.1.2+0-11external/bsd/unbound/dist/testdata/edns_cache.tdir/edns_cache.stub1
1.1.1.3+8-3external/bsd/unbound/dist/doc/unbound.doxygen
1.1.1.4+6-4external/bsd/unbound/dist/doc/unbound-host.1.in
1.1+10-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.post
1.1.1.3+8-2external/bsd/unbound/dist/services/modstack.c
1.1.1.4+8-2external/bsd/unbound/dist/util/fptr_wlist.c
1.1+10-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.post
1.1.1.3+10-0external/bsd/unbound/dist/util/module.c
1.1.1.4+9-1external/bsd/unbound/dist/testcode/testpkts.c
1.1.1.3+9-0external/bsd/unbound/dist/util/storage/slabhash.h
1.1.1.3+6-3external/bsd/unbound/dist/util/data/msgencode.c
1.1.1.2+9-0external/bsd/unbound/dist/edns-subnet/subnetmod.h
1.1.1.2+5-4external/bsd/unbound/dist/testdata/iter_domain_sale_nschange.rpl
1.1.1.4+9-0external/bsd/unbound/dist/iterator/iter_utils.h
1.1.1.3+7-2external/bsd/unbound/dist/services/cache/infra.h
1.1.1.4+4-4external/bsd/unbound/dist/testdata/black_prime_entry.rpl
1.1.1.4+5-3external/bsd/unbound/dist/smallapp/unbound-host.c
1.1.1.3+4-4external/bsd/unbound/dist/aclocal.m4
1.1.1.2+5-2external/bsd/unbound/dist/contrib/unbound.service.in
1.1.1.2+4-3external/bsd/unbound/dist/testdata/iter_pcnamech.rpl
1.1.1.4+4-3external/bsd/unbound/dist/testcode/testbound.c
1.1.1.4+7-0external/bsd/unbound/dist/iterator/iter_hints.c
1.1.1.4+7-0external/bsd/unbound/dist/iterator/iter_fwd.c
1.1.1.3+2-5external/bsd/unbound/dist/sldns/rrdef.c
1.1.1.4+6-1external/bsd/unbound/dist/doc/unbound-anchor.8.in
1.1.1.2+4-3external/bsd/unbound/dist/testdata/iter_pcnamechrec.rpl
1.1.1.2+4-2external/bsd/unbound/dist/ltmain.sh
1.1.1.4+3-3external/bsd/unbound/dist/smallapp/worker_cb.c
1.1.1.2+3-3external/bsd/unbound/dist/edns-subnet/addrtree.h
1.1.1.2+3-3external/bsd/unbound/dist/testdata/edns_cache.tdir/edns_cache.stub2
1.1.1.4+3-3external/bsd/unbound/dist/libunbound/worker.h
1.1.1.4+4-1external/bsd/unbound/dist/iterator/iterator.h
1.1.1.4+5-0external/bsd/unbound/dist/util/iana_ports.inc
1.1.1.2+3-2external/bsd/unbound/dist/testdata/iter_domain_sale.rpl
1.1.1.4+2-2external/bsd/unbound/dist/services/cache/rrset.c
1.1.1.3+1-3external/bsd/unbound/dist/sldns/rrdef.h
1.1.1.2+2-2external/bsd/unbound/dist/testdata/fwd_compress_c00c.tdir/fwd_compress_c00c.test
1.1.1.4+2-2external/bsd/unbound/dist/sldns/wire2str.c
1.1.1.2+2-2external/bsd/unbound/dist/contrib/unbound.init
1.1.1.4+3-1external/bsd/unbound/dist/doc/README
1.1.1.2+2-2external/bsd/unbound/dist/smallapp/unbound-control-setup.sh.in
1.1.1.4+2-2external/bsd/unbound/dist/doc/unbound.8.in
1.1.1.4+4-0external/bsd/unbound/dist/services/localzone.h
1.1.1.3+3-1external/bsd/unbound/dist/winrc/setup.nsi
1.1.1.2+2-2external/bsd/unbound/dist/testdata/pylib.tdir/pylib.post
1.1.1.3+2-2external/bsd/unbound/dist/sldns/sbuffer.h
1.1.1.2+2-2external/bsd/unbound/dist/testdata/edns_cache.tdir/edns_cache.test
1.1.1.2+2-1external/bsd/unbound/dist/util/rtt.c
1.1.1.3+2-1external/bsd/unbound/dist/contrib/libunbound.pc.in
1.1.1.2+0-3external/bsd/unbound/dist/testdata/edns_cache.tdir/edns_cache.conf
1.1.1.3+3-0external/bsd/unbound/dist/.gitignore
1.1.1.4+2-1external/bsd/unbound/dist/testcode/unitmain.c
1.1.1.4+2-1external/bsd/unbound/dist/testdata/dlv_ask_higher.rpl
1.1.1.2+2-1external/bsd/unbound/dist/testdata/stream_ssl.tdir/stream_ssl.serv.conf
1.1.1.3+2-1external/bsd/unbound/dist/dnscrypt/dnscrypt.c
1.1.1.3+3-0external/bsd/unbound/dist/testcode/checklocks.c
1.1.1.4+3-0external/bsd/unbound/dist/testcode/replay.h
1.1.1.3+2-1external/bsd/unbound/dist/validator/autotrust.c
1.1.1.2+2-0external/bsd/unbound/dist/testdata/stream_ssl.tdir/stream_ssl.post
1.1.1.2+1-1external/bsd/unbound/dist/validator/val_kcache.c
1.1.1.3+1-1external/bsd/unbound/dist/validator/autotrust.h
1.1.1.2+2-0external/bsd/unbound/dist/ipsecmod/ipsecmod.c
1.1.1.3+1-1external/bsd/unbound/dist/edns-subnet/addrtree.c
1.1.1.2+1-1external/bsd/unbound/dist/testcode/delayer.c
1.1.1.4+1-1external/bsd/unbound/dist/doc/unbound-checkconf.8.in
1.1.1.3+2-0external/bsd/unbound/dist/util/data/msgparse.h
1.1.1.2+2-0external/bsd/unbound/dist/testdata/rrset_updated.rpl
1.1.1.2+1-1external/bsd/unbound/dist/testdata/07-confroot.tdir/07-confroot.test
1.1.1.3+1-1external/bsd/unbound/dist/config.guess
1.1.1.3+1-1external/bsd/unbound/dist/config.sub
1.1.1.4+2-0external/bsd/unbound/dist/iterator/iter_delegpt.h
1.1.1.3+2-0external/bsd/unbound/dist/daemon/daemon.h
1.1.1.2+2-0external/bsd/unbound/dist/testdata/rrset_rettl.rpl
1.1.1.3+1-1external/bsd/unbound/dist/libunbound/unbound-event.h
1.1.1.3+1-1external/bsd/unbound/dist/util/mini_event.c
1.1.1.2+1-1external/bsd/unbound/dist/compat/sha512.c
1.1.1.2+1-1external/bsd/unbound/dist/install-sh
1.1.1.2+1-1external/bsd/unbound/dist/testdata/auth_xfr_notify.rpl
1.1.1.2+2-0external/bsd/unbound/dist/testdata/rrset_untrusted.rpl
1.1.1.4+2-0external/bsd/unbound/dist/contrib/README
1.1.1.3+2-0external/bsd/unbound/dist/testcode/testpkts.h
1.1.1.2+1-1external/bsd/unbound/dist/testcode/unitecs.c
1.1.1.3+1-1external/bsd/unbound/dist/testdata/net_signed_servfail.rpl
1.1.1.4+0-2external/bsd/unbound/dist/services/outside_network.h
1.1.1.4+2-0external/bsd/unbound/dist/testcode/unitneg.c
1.1.1.2+2-0external/bsd/unbound/dist/testdata/fwd_cached.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pcdiff.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_got6only.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/fwd_compress_c00c.tdir/fwd_compress_c00c.conf
1.1.1.2+1-0external/bsd/unbound/dist/testdata/fwd_compress_c00c.tdir/fwd_compress_c00c.post
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_qds_twoanc.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_scrub_dname_sec.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pcnamerec.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_mod.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/autotrust_init_zsk.rpl
1.1.1.2+1-0external/bsd/unbound/dist/contrib/libunbound.so.conf
1.1.1.2+1-0external/bsd/unbound/dist/testdata/domain_insec_dlv.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/fetch_glue_cname.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/val_twocname.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_cycle_noh.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_fwdstubroot.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_resolve.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_referd.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_wild_pos.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_fwdstub.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/autotrust_init_ds.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pcttl.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_privaddr.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/subnet_cached.crpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/dlv_remove_empty.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_scrub_cname_an.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_stubfirst.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_nsec3_b3_optout_negcache.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_qds_badanc.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/subnet_val_positive.crpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_reclame_one.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/black_prime.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_dname_insec.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_fwdfirstequal.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_stub_leak.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/subnet_val_positive_client.crpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_unalgo_dlv.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_below_ta.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_delegation.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ipsecmod_whitelist.crpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_prefetch_change2.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_primenoglue.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ttl_min.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_scrub_dname_rev.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_noadwhennodo.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_spurious_ns.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_timeout_ra_aaaa.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_ta_algo_missing_dp.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_unalgo_anchor.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pc_aaaa.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_pcdirect.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pcname.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_prefetch.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_rrsig.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_ta_algo_dnskey.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_ta_algo_dnskey_dp.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_remove_pos.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/dlv_unused.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_emptydp.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_hint_lame.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_pc_a.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_resolve_minimised.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_resolve_minimised_nx.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/trust_cname_chain.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_keyprefetch_verify.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_nsec3_b3_optout.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_qds_oneanc.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/dns64_lookup.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/fetch_glue.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_prefetch_childns.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_insecure_negcache.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_lame_nosoa.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/autotrust_init.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_anchor.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_emptydp_for_glue.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_resolve_minimised_timeout.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_scrub_dname_insec.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_adbit.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_adcopy.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_prefetch_fail.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ipsecmod_enabled.crpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ipsecmod_ignore_bogus_ipseckey.crpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ipsecmod_max_ttl.crpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_ns_badip.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_ns_spoof.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_resolve_minimised_refused.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_ds_afterprime.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_referglue.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/val_stub_noroot.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/iter_class_any.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/views.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/autotrust_init_sigs.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_lame_noaa.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/val_positive.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_prefetch_ns.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/dlv_insecure.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/dlv_remove_nodel.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_soamin.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/ipsecmod_strict.crpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_fwdfirst.rpl
1.1.1.4+1-0external/bsd/unbound/dist/testdata/black_data.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/val_faildnskey_ok.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_stub_noroot.rpl
1.1.1.2+1-0external/bsd/unbound/dist/testdata/iter_prefetch_change.rpl
1.1.1.3+1-0external/bsd/unbound/dist/testdata/iter_recurse.rpl
1.1.1.4+1-0external/bsd/unbound/dist/compat/arc4random.c
1.1.1.2+1-0external/bsd/unbound/dist/libunbound/ubsyms.def
1.1+1-0external/bsd/unbound/dist/testdata/stream_ssl.tdir/ticket1.dat
1.1+1-0external/bsd/unbound/dist/testdata/stream_ssl.tdir/ticket2.dat
1.1.1.2+1-0external/bsd/unbound/dist/libunbound/python/examples/dnssec_test.py
1.1.1.4+1-0external/bsd/unbound/dist/cachedb/cachedb.c
1.1.1.4+1-0external/bsd/unbound/dist/daemon/cachedump.c
1.1.1.4+1-0external/bsd/unbound/dist/validator/val_neg.c
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/unbound_server.key
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/stream_ssl.tdir/ticket1.dat
1.1.1.1+0-0external/bsd/unbound/dist/testdata/stream_ssl.tdir/ticket2.dat
1.1.1.1+0-0external/bsd/unbound/dist/util/edns.h
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.post
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.post
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/ssl_req_timeout.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_idle_timeout.tdir/tcp_idle_timeout.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/unbound_server.pem
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/unbound_server.key
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.post
1.1.1.1+0-0external/bsd/unbound/dist/util/tcp_conn_limit.h
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.test
1.1.1.1+0-0external/bsd/unbound/dist/contrib/unbound-fuzzme.patch
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_timeout.tdir/tcp_req_timeout.testns
1.1.1.1+0-0external/bsd/unbound/dist/util/tcp_conn_limit.c
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.post
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.post
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_order.tdir/ssl_req_order.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/pylib.tdir/pylib.lookup.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/edns_keepalive.rpl
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_size.tdir/tcp_req_size.testns
1.1.1.1+0-0external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.dsc
1.1.1.2+0-0external/bsd/unbound/dist/winrc/combined.ico
1.1.1.1+0-0external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/fwd_no_cache.rpl
1.1.1.2+0-0external/bsd/unbound/dist/winrc/setup_left.bmp
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.conf
1.1.1.2+0-0external/bsd/unbound/dist/winrc/setup_top.bmp
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/auth_nsec3_wild.rpl
1.1+0-0external/bsd/unbound/dist/winrc/unbound256.png
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.post
1.1.1.1+0-0external/bsd/unbound/dist/winrc/unbound256.png
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.pre
1.1.1.1+0-0external/bsd/unbound/dist/util/edns.c
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.conf
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_conn_limit.tdir/tcp_conn_limit.test
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.dsc
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.pre
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.post
1.1.1.1+0-0external/bsd/unbound/dist/testdata/ssl_req_timeout.tdir/unbound_server.pem
1.1.1.1+0-0external/bsd/unbound/dist/testdata/tcp_req_order.tdir/tcp_req_order.test
1.1.1.2+0-0external/bsd/unbound/dist/winrc/unbound32.ico
+16,798-7,255411 files

UnifiedSplitRaw