Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (26m)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (177d) 

2024-05-09 21:23:28 UTC Now

2024-05-04 12:05:45 UTC netbsd-10 commitmail json YAML

Ammend ticket #674 for additional pullups

(martin)

2024-05-04 12:04:56 UTC netbsd-10 commitmail json YAML

Additionally pull up to fix the llvm build after #674:

sys/dev/raidframe/rf_disks.c 1.95

snprintf() should really include a format.

(martin)

2024-04-28 13:43:59 UTC netbsd-10 commitmail json YAML

2024-04-28 13:42:44 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by christos in ticket #681):

etc/Makefile: revision 1.470

PR/58200: Kouichi Hashikawa: ./makeobsolete uses platform's sed

(martin)

2024-04-28 13:33:52 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by maya in ticket #680):

libexec/httpd/dir-index-bozo.c: revision 1.37

Create mobile-friendly directory listings

A typical mobile browser on a smartphone assumes a page without a "viewport"
<meta> tag is designed for desktop browsers. It displays the page in a
virtual window that simulates a wider screen and does not adjust it for
the phone's pixel density. The usual result is that the content on the page
looks small, and interacting with the page comfortably and precisely requires
zoom. This is currently the case with bozohttpd directory listing pages.
from D. Bohdan in PR bin/57962

(martin)

2024-04-28 13:27:17 UTC netbsd-10 commitmail json YAML

2024-04-28 13:26:36 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by maya in ticket #679):

sys/dev/usb/uftdi.c: revision 1.78
sys/dev/usb/usbdevs: revision 1.815

Add some USB serial adapters
From Cameron Williams in PR kern/58127

Add support for a range of USB serial adapters
From Cameron Williams in PR kern/58127

(martin)

2024-04-28 13:23:20 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jdolecek in ticket #678):

lib/libc/gen/usleep.c: revision 1.21
lib/libc/gen/usleep.3: revision 1.20
lib/libc/gen/usleep.3: revision 1.21

allow usleep(3) with useconds >= 1000000

update manpage to mention this interface is obsolete, remove
EINVAL from the ERRORS and mention EINTR instead.

PR lib/58184 by Taylor R Campbell

it's nanosleep(2), not nanosleep(3)

(martin)

2024-04-28 13:19:21 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hgutch in ticket #677):

usr.sbin/mtree/create.c: revision 1.78
external/gpl3/gcc.old/dist/gcc/cp/cfns.h: revision 1.12
(applied to external/gpl3/gcc/dist/gcc/cp/cfns.h)

For the NetBSD tools build we provide our own fts.h not FreeBSD's so the
comparator should have the NetBSD signature.

Fix gcc build on FreeBSD 14 (and possibly other systems using clang >= 16).
Pointed out by Eirik �verby.
OK mrg@

(martin)

2024-04-28 13:07:17 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by thorpej in ticket #676):

sys/dev/usb/uftdi.c: revision 1.79

Add a match quirk to prevent matching any interface on SiPEED FPGA
development boards (e.g. Tang Nano 9K).  The FT2232s on these boards
are wired up only for JTAG.

(martin)

2024-04-28 12:12:00 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by oster in ticket #675):

sbin/raidctl/raidctl.8: revision 1.81
sbin/raidctl/raidctl.c: revision 1.80

Implement command-line configuration of simple RAID sets with raidctl
based on the usage pattern:

raidctl <device> create <level> <component1> <component2> ...

For example,

raidctl raid0 create mirror absent /dev/wd1e

will create a RAID level 1 (mirror) set with an absent first component
and /dev/wd1e as the second component. The resulting RAID device will
be marked as auto-configurable, will have a serial number set (based
on the current time), and parity will be initialized. Reasonable
performance values are automatically used by default for other parameters
normally specified in the configuration file.

Also: Only print out Autoconfig status if being verbose.

(martin)

2024-04-28 12:09:09 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by oster in ticket #674):

sys/dev/raidframe/rf_raid.h: revision 1.52
sbin/raidctl/raidctl.8: revision 1.80
sys/dev/raidframe/rf_driver.c: revision 1.141
sys/dev/raidframe/rf_disks.c: revision 1.94
sys/dev/raidframe/rf_diskqueue.c: revision 1.64
sys/dev/raidframe/rf_diskqueue.h: revision 1.30
sys/dev/raidframe/rf_disks.h: revision 1.15
sys/dev/raidframe/rf_netbsdkintf.c: revision 1.414
sys/dev/raidframe/rf_reconstruct.c: revision 1.129
sys/dev/raidframe/raidframeio.h: revision 1.12
sbin/raidctl/raidctl.c: revision 1.79

Implement hot removal of spares and components. From manu@.

Implement a long desired feature of automatically incorporating
a used spare into the array after a reconstruct.

Given the configuration:

Components:
/dev/wd0e: failed
/dev/wd1e: optimal
/dev/wd2e: optimal
Spares:
/dev/wd3e: spare

Running 'raidctl -F /dev/wd0e raid0' will now result in the
following configuration after a successful rebuild:

Components:
/dev/wd3e: optimal
/dev/wd1e: optimal
/dev/wd2e: optimal
No spares.

Thanks to manu@ for the development of the initial set of changes
which allowed the changes to automatically incorporate a used spare
to come to fruition. Thanks also to manu@ for useful discussions
about and additional testing of these changes.

(martin)

2024-04-28 10:07:03 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by ozaki-r in ticket #673):

sys/netinet6/frag6.c: revision 1.78

frag6: fix calculation of fragment length

Because of the miscalculation, 32 bytes fragmented IPv6 packets
have been wrongly dropped.

See https://mail-index.netbsd.org/tech-net/2024/04/14/msg008741.html
for more details.

Patch from Yasuyuki KOZAKAI (with minor tweaks)

(martin)

2024-04-28 10:02:51 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jakllsch in ticket #672):

distrib/sets/lists/xbase/mi: revision 1.175
external/mit/xorg/bin/xsetwallpaper/Makefile: revision 1.6

Install xsetwallpaper(1) manual page
Should fix PR 58172.

(martin)

2024-04-20 13:27:04 UTC netbsd-10 commitmail json YAML

Ammend #663 for additional pullups

(martin)

2024-04-20 13:26:35 UTC netbsd-10 commitmail json YAML

Additionally pull up following revision(s) (requested by jakllsch in ticket #663):

external/bsd/ntp/lib/libntp/Makefile: revision 1.32
external/bsd/ntp/lib/libntp/Makefile: revision 1.33
external/bsd/ntp/lib/libntp/Makefile: revision 1.34

The substitute __DATE__ should be %b %e %Y per a C18 draft
Subtle change that won't make a functional difference in this case;
changed only for semantic correctness.

Increase MKREPRO robustness
- Use C locale to ensure month abbreviations are as expected
- bail out if MKREPRO_TIMESTAMP is not defined
- bail out if resulting __DATE__/__TIME__ replacement strings are empty

fix copy/paste-o

(martin)

2024-04-19 09:19:32 UTC netbsd-10 commitmail json YAML

2024-04-19 09:18:28 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #671):

sys/uvm/pmap/pmap.c: revision 1.78
sys/uvm/pmap/pmap.h: revision 1.27

Fix types in pmap_page_clear_attributes so that the top bits of
the u_long mdpg_attrs aren't dropped giving atomic_cas_ulong no
chance of completing if any of the top bits is set.

Update pmap_page_set_attributes for consistency.

An ATF test run completed for me with this fix.

port-riscv/58006: ATF tests no longer complete on riscv-riscv64

(martin)

2024-04-19 09:15:55 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kalvisd in ticket #670):

sys/arch/vax/vax/unimpl_emul.S: revision 1.5

vax/unimpl_emul.S: Initialise locations storing floating-point values with
a constant of the appropriate format

(martin)

2024-04-19 09:01:35 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jakllsch in ticket #663):

external/bsd/ntp/lib/libntp/Makefile: revision 1.30
external/bsd/ntp/lib/libntp/Makefile: revision 1.31
external/bsd/ntp/lib/libntp/Makefile: revision 1.28
external/bsd/ntp/lib/libntp/Makefile: revision 1.29

use ${MKREPRO_TIMESTAMP} for baking in the date and time.
fix format.
remove now-unused assignment
Format MKREPRO_TIMESTAMP with "%b %d %Y" to correctly substitute __DATE__

(martin)

2024-04-18 18:26:43 UTC netbsd-10 commitmail json YAML

2024-04-18 18:24:31 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hannken in ticket #669):

sys/dev/ccd.c: revision 1.190

Using a ccd(4) with GPT (dk* at ccd*) the disk framework will call
ccdstrategy() -> ccdstart() -> ccdbuffer()  from softint context.

Allocating the buffer with PR_WAITOK here is forbidden.

Change ccdstart() / ccdbuffer() to report failure back to caller and
pass PR_WAITOK / PR_NOWAIT as an additional argument.

Call ccdstart() with PR_NOPWAIT from ccdstrategy() and on error defer
to the kthread.  Call ccdstart() with PR_WAITOK from kthread so requests
from kthread always succeed to allocate the buffers.

Remove the (non working) throttling on low memory as it is no longer needed.

Fixes PR kern/58043 "kernel crash in assert_sleepable() in -current,
dk(4) driver?"

(martin)

2024-04-18 18:22:10 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hannken in ticket #668):

sys/miscfs/procfs/procfs.h: revision 1.83
sys/miscfs/procfs/procfs.h: revision 1.84
sys/kern/vfs_mount.c: revision 1.104
sys/miscfs/procfs/procfs_vnops.c: revision 1.230
sys/kern/init_main.c: revision 1.547
sys/kern/kern_hook.c: revision 1.15
sys/miscfs/procfs/procfs_vfsops.c: revision 1.112
sys/miscfs/procfs/procfs_vfsops.c: revision 1.113
sys/miscfs/procfs/procfs_vfsops.c: revision 1.114
sys/miscfs/procfs/procfs_subr.c: revision 1.117

Print dangling vnode before panic() to help debug.

PR kern/57775 ""panic: unmount: dangling vnode" while umounting procfs"
Protect kernel hooks exechook, exithook and forkhook with rwlock.

Lock as writer on establish/disestablish and as reader on list traverse.

For exechook ride "exec_lock" as it is already take as reader when
traversing the list.  Add local locks for exithook and forkhook.

Move exec_init before signal_init as signal_init calls exechook_establish()
that needs "exec_lock".

PR kern/39913 "exec, fork, exit hooks need locking"

Add a hashmap to access all procfs nodes by pid.

Using the exechook to revoke procfs nodes is racy and may deadlock:
one thread runs doexechooks() -> procfs_revoke_vnodes() and wants to suspend
the file system for vgone(), while another thread runs a forced unmount,
has the file system suspended, tries to disestablish the exechook and
waits for doexechooks() to complete.

Establish/disestablish the exechook on module load/unload instead
mount/unmount and use the hashmap to access all procfs nodes for this pid.

May fix PR kern/57775 ""panic: unmount: dangling vnode" while umounting procfs"

Remove all procfs nodes for this process on process exit.

(martin)

2024-04-18 18:17:06 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #667):

sys/arch/aarch64/aarch64/sig_machdep.c: revision 1.9
sys/arch/aarch64/aarch64/cpu_machdep.c: revision 1.15

kern/58149: aarch64: Cannot return from a signal handler if SP was
misaligned when the signal arrived

Apply the kernel diff from the PR
1. sendsig_siginfo() previously assumed that user SP was always aligned to
    16 bytes and could call signal handlers with SP misaligned. This is a
    wrong assumption because aarch64 demands that SP is aligned *only while*
    it's being used to access memory. Now it properly aligns it before
    pusing anything on the stack.
2. cpu_mcontext_validate() used to check if _REG_SP was aligned and
    considered the ucontext invalid otherwise. This meant if a signal was
    sent to a process whose SP was misaligned, the signal handler would fail
    to return because the ucontext passed from the kernel was an invalid
    one. Now setcontext(2) doesn't complain about misaligned SP.

(martin)

2024-04-18 18:14:22 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #666):

sys/arch/arm/arm32/pmap.c: revision 1.443

port-arm/58135: reproducible pmap KASSERT failure for armv7 with NFS root

Don't unconditionally set XN in pmap_clearbit - only set it if a mapping
exists VM_PROT_EXEC is being cleared.

I've simplified the #ifdefs in the patch from the PR.

(martin)

2024-04-18 18:06:09 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #665):

sys/ddb/db_proc.c: revision 1.16

Fix alignment of ddb 'ps/[lw]' output. LID matches PID and has more digits.

(martin)

2024-04-18 17:57:31 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jakllsch in ticket #664):

share/mk/bsd.hostlib.mk: revision 1.21

Filter out -Wp,-iremap,* from CPPFLAGS as is done in hostprog.mk

Seems to fix build of libnbcompat in reproducible mode on host toolchains w/o -iremap

(martin)

2024-04-18 16:39:08 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by andvar in ticket #662):

sys/arch/x86/x86/viac7temp.c: revision 1.10

viac7temp(4): define module metadata using MODULE() macro and implement
viac7temp_modcmd() to handle module load/unload events.

Fixes PR kern/58148. Look OK by mrg@.

(martin)

2024-04-18 16:29:48 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by andvar in ticket #661):

sys/dev/pci/if_mcx.c: revision 1.27

mcx(4): enforce full-duplex mark in mcx_media_status(), when link is up.

LACP protocol requires full-duplex to be enabled for lagg(4) to work,
however mcx(4) was not setting this capability making it to fail.

Fixes PR kern/58124.  OK'd by msaitoh@

(martin)

2024-04-18 16:26:48 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by andvar in ticket #660):

sbin/ifconfig/ifconfig.8: revision 1.126
sbin/ifconfig/ifconfig.8: revision 1.127
sbin/ifconfig/ifconfig.8: revision 1.128
sbin/ifconfig/ifconfig.8: revision 1.129

Added documents about parameters related to lagg(4)
PR misc/58125

Correct a very minor typo (s/id/is/)

ifconfig(8): move laggportpri next to laggport

Update the date of the documentation to reflect recent changes.

(martin)

2024-04-18 16:22:28 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by knakahara in ticket #659):

sys/netinet6/in6_ifattach.c: revision 1.122
sys/netinet/sctp_asconf.c: revision 1.14
sys/netinet6/nd6.c: revision 1.282

Fix invalid IPv6 route when ipsecif(4) is deleted tunnel.  Pointed out by ohishi@IIJ.
The pointed bug is fixed by modification in nd6_need_cache().
Others are similar bugs.

(martin)

2024-04-18 15:44:37 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #658):

share/man/man4/wg.4: revision 1.8
share/man/man4/wg.4: revision 1.9

wg(4): Rework example numbering for clarity and add IPv6.

Let's avoid triggering unease with host number 0.
PR misc/58015

wg(4): Fix IPv6 numbering in example diagram.

This way it matches the configuration suggested below (which avoids
host number zero on the subnet).

PR misc/58015

(martin)

2024-04-18 15:40:17 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #657):

distrib/evbarm/instkernel/sshramdisk/Makefile: revision 1.26

evbarm/instkernel/sshramdisk: Put firmware in the right paths.

Maybe this should also be wired up to `release' to put the ramdisk in
the releasedir so we detect destdir path leakage like this had.

PR port-evbarm/58035

(martin)

2024-04-18 15:32:36 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #656):

sys/stand/efiboot/efiboot.c: revision 1.23

efiboot: Duplicate efi_bootdp before we clobber it in efi_net_probe.

Patch from jakllsch@.  Makes Socionext Synquacer boot considerably
more reliably.

PR kern/58075

(martin)

2024-04-18 15:21:55 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #655):

sys/modules/Makefile: revision 1.285
share/mk/bsd.own.mk: revision 1.1365
share/mk/bsd.own.mk: revision 1.1366
sys/arch/aarch64/include/sljit_machdep.h: revision 1.4
sys/external/bsd/sljit/dist/sljit_src/sljitNativeARM_64.c: revision 1.5

sljit: Pacify -Wsign-compare.

If these sizes are negative, we're probably in trouble anyway, so
assert nonnegative here.
Needed to resolve PR 58103.

bsd.own.mk: Enable MKLSJIT on aarch64.

Make sure there's only one copy of the conditional, in bsd.own.mk;
just make sys/modules/Makefile conditional on MKSLJIT so we don't
have to keep these in sync.

As a workaround for PR 58106, tweak the conditional definition of
SLJIT_CACHE_FLUSH to use cpu_icache_sync_range only in _HARDKERNEL,
and use __builtin___clear_cache in userland and in rump kernels.

PR 58103: bpfjit.kmod is not built on aarch64
bsd.own.mk: No need for MKSLJIT to be set differently from others.
- Use ?=, not =, so mk.conf setting wins.
- Write out per-architecture tabular settings, not a conditional.
- Add comments for the architectures that look like they should have
  sljit but don't.  (XXX Missing comments about powerpc and mips --
  not sure why, is this because modules don't yet work on those
  architectures, or what?)

Tidying for PR 58103: bpfjit.kmod is not built on aarch64.

(martin)

2024-04-17 18:03:46 UTC netbsd-10 commitmail json YAML

2024-04-17 18:02:23 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #654):

share/mk/bsd.lib.mk: revision 1.398
share/mk/bsd.lib.mk: revision 1.399
share/mk/bsd.x11.mk: revision 1.152
(via patch)

PR/58104: Kouichi Hashikawa: Use ${TOOL_AWK}

Back-out unintented commit.

(martin)

2024-04-17 16:23:08 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #653):

sys/dev/pci/if_iwn.c: revision 1.100

if_iwn.c: pick up proper firmware for Centrino Wireless-N 130

Both variants should use iwlwifi-6000g2b-6 not iwlwifi-6000g2a-6. (It
seems only two specific product variants use iwlwifi-6000g2a-6. We
could simplify by reversing the sense of the test, as OpenBSD does, but
it doesn't seem to matter much, as what we now match seems to be the
full gamut possible, so the simpler diff was chosen here.)

Addresses PR kern/58105 from wandrien.dev%gmail.com@localhost, with the
PCI_PRODUCT_INTEL_WIFI_LINK_130_1 match tested by the reporter. Code
inspection of the FreeBSD driver indicates we should safely be able to
match PCI_PRODUCT_INTEL_WIFI_LINK_130_2 also.

(martin)

2024-04-16 19:11:45 UTC netbsd-10 commitmail json YAML

2024-04-16 19:10:07 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by thorpej in ticket #652):

sys/arch/alpha/pci/irongate_pci.c: revision 1.13

Add a missing barrier in irongate_conf_read0().

(martin)

2024-04-16 18:59:49 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by thorpej in ticket #651):

sys/dev/usb/ugen.c: revision 1.177

ugen and ugenif share the same /dev/ugenN.xx namespace in such a way
that the device unit number does not necessarily match the /dev/ugenN.xx
unit number (N).  If you ONLY have ugen devices, it happens to work out
and devpubd scripts can be extremely naive.  If you ONLY have ugenif
devices, it also happens to work out, but your devpubd scripts have to
slightly more informed.  If you have a mix of ugen AND ugenif devices,
though, you're pretty much out of luck.

So, this change adds a "ugen-unit" device property which devpubd scripts
can query to determine which /dev/ugenN.xx nodes a given ugen or ugenif
device is using.

(martin)

2024-04-16 18:45:39 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by thorpej in ticket #649):

sys/dev/usb/uftdi.c: revision 1.77
share/man/man4/ugen.4: revision 1.39
sys/dev/usb/ugen.c: revision 1.176
sys/dev/usb/usbdevices.config: revision 1.43

Define a "flags 1" config directive for ugenif, which is similar to ugen's,
but rather forces the ugenif to match at the *lowest* match priority rather
than the highest.  This allows ugenif to claim only otherwise unclaimed
interfaces.

Add a "match quirk" mechanism to the uftdi driver that allows it to
selectively reject individual interfaces based on the combination of
- Vendor ID
- Product ID
- Interface number
- Vendor string
- Product string

This is necessary[*] to allow some devices that would otherwise match
uftdi (and thus instantiate a ucom) to be matched by ugenif instead,
which is required to make the device available to libusb1.

[*] ...due to a deficiency in the USB stack that does not provide a
mechanism for a user-space driver to claim a device from a kernel driver
and then return it back at a later time.

Use this new match quirk mechanism to reject "interface 1" of the
FTDI 2232C-based Tigard debug board; On this board, "interface 0"
is brought out to regular TTL-level UART pins, but "interface 1" is
brought out to SWD and JTAG headers, and is really only useful when
used with something like openocd.  Because the FTDI 2232C on this board
just uses the standard FTDI vendor and product IDs, it can only be
distinguished by the strings, which cannot be specified usbdevices.config,
thus necessitating the match quirk entry (that works in combination
with the ugenif entry added in usbdevices.config).

(martin)

2024-04-16 18:33:47 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #648):

lib/libc/time/strptime.c: revision 1.66

strptime(3): Declare digit d as time_t.

This doesn't make a semantic difference -- d can only take on the ten
values {0,1,2,3,4,5,6,7,8,9}, and the arithmetic with it later all
comes out the same whether the type is unsigned or time_t, even if
time_t were int32_t instead of int64_t.

But it pacifies overzealous compilers used by downstream users of
this code.  And while it's silly to use a much wider type (64-bit
signed) than is needed here to store a single digit, it doesn't
really hurt either (32-bit unsigned is much larger than needed too).

PR lib/58041

(martin)

2024-04-16 18:17:45 UTC netbsd-10 commitmail json YAML

2024-03-28 08:33:33 UTC netbsd-10 commitmail json YAML

2024-03-26 18:10:21 UTC netbsd-10 commitmail json YAML

2024-03-26 18:09:22 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #650):

sys/dev/audio/audio.c: revision 1.137

Input and output codecs produce and consume internal audio data, so
don't byteswap it.

(martin)

2024-03-25 15:28:01 UTC netbsd-10 commitmail json YAML

2024-03-25 15:26:04 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #647):

sys/dev/qbus/if_qe.c: revision 1.82

vax/qe(4): supply an ipf->if_init() so that if_init() doesn't crash.

convert the existing qeinit() to one compatible with if_init.
should fix PR#58068.

(martin)

2024-03-25 15:23:50 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by uwe in ticket #646):

external/gpl2/groff/dist/tmac/doc.tmac: revision 1.3
distrib/notes/common/main: revision 1.575

doc.tmac: .Lk - handle punctuation without anchor-text correctly
doc-get-arg-type expects that doc-width is set beforehand, so call
doc-get-width to make sure doc-get-arg-type detects the trailing
punctuation correctly.
PR bin/58074

distrib/notes: add back the sentence final dot after .Lk
It was omitted in previous b/c of a bug in .Lk that was fixed
in PR bin/58074

(martin)

2024-03-25 15:18:22 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #642):

etc/etc.amd64/Makefile.inc: revision 1.17
distrib/amd64/ramdisks/common/Makefile.ramdisk: revision 1.17
etc/etc.i386/Makefile.inc: revision 1.70
distrib/i386/ramdisks/common/Makefile.ramdisk: revision 1.16

x86: Release the ramdisks too.

This way we will get cgdroot.fs (and zfsroot.fs too) in the release.
PR misc/57534

(martin)

2024-03-25 15:15:20 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kre in ticket #641):

usr.bin/kdump/kdump.c: revision 1.145

Remove debug print

(martin)

2024-03-25 15:09:38 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #640):

usr.bin/audio/common/wav.c: revision 1.24

audio_wav_parse_hdr: handle zero-length data files again
the previous clean up turns zero-length data into no data and thus
an error, instead of simply doing nothing.  noted by gson.

(martin)

2024-03-25 15:05:17 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #639):

sys/dev/acpi/acpivar.h: revision 1.90
sys/dev/acpi/files.acpi: revision 1.129
sys/dev/acpi/acpi.c: revision 1.299
sys/dev/acpi/files.acpi: revision 1.130

acpi(4): New iattr `apeibus' for attaching an APEI driver.

APEI is the ACPI Platform Error Interface, a standard (if very
complicated) interface for reporting hardware errors to the OS.
Firmware support for APEI is presented through the ACPI tables BERT
(Boot Error Record Table), ERST (Error Record Serialization Table),
EINJ (Error Injection Table), and HEST (Hardware Error Source Table),
rather than through nodes in the ACPI device tree, so it can't just
attach through the existing acpinodebus iattr and instead requires a
special pseudo-bus like acpiwdrt(4).

No driver yet -- this is just the hook to attach one in a module.

The new member sc_apei of struct acpi_softc is placed at the end of
the structure so that this change can be safely pulled up to release
branches without risk to ABI compatibility in existing modules such
as acpiverbose.kmod which may rely on the layout (but not size) of
struct acpi_softc.

PR kern/58046

acpi(4): Make apeibus actually work as an iattr.
PR kern/58046

(martin)

2024-03-25 14:43:30 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #638):

lib/libc/time/strptime.c: revision 1.64
lib/libc/time/strptime.c: revision 1.65
tests/lib/libc/time/t_strptime.c: revision 1.16

strptime(3): Exercise some edge cases in the automatic tests.

Unfortunately, we can't quite use strptime as a black box to detect
the cases that triggered undefined behaviour, because strptime just
fails in that case anyway since the number that would go in .tm_year
is far out of the representable range.
PR lib/58041

strptime(3): Avoid arithmetic overflow.
PR lib/58041

strptime(3): Reduce unnecessary indentation.
Post-fix tidying.
No functional change intended.
PR lib/58041

(martin)

2024-03-25 14:14:56 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #637):

crypto/external/bsd/openssl/dist/providers/implementations/digests/sha2_prov.c: revision 1.2
tests/crypto/libcrypto/t_sha512trunc.c: revision 1.1
tests/crypto/libcrypto/t_sha512trunc.c: revision 1.2
tests/crypto/libcrypto/Makefile: revision 1.16
distrib/sets/lists/tests/mi: revision 1.1311
crypto/external/bsd/openssl/dist/crypto/evp/legacy_sha.c: revision 1.2
distrib/sets/lists/debug/mi: revision 1.430
crypto/external/bsd/openssl/dist/include/crypto/sha.h: revision 1.2
crypto/external/bsd/openssl/lib/libcrypto/libc-sha2xx.c: revision 1.4

libcrypto: Add some trivial tests for truncated SHA-512 variants.
These should use more of the test vectors from
https://csrc.nist.gov/Projects/Cryptographic-Algorithm-Validation-Program/Secure-Hashing#Testing
but this will do for now to detect the buffer overrun rake we left
lying around for ourselves.
PR lib/58039

libcrypto: Fix buffer overrun in truncated SHA-512 functions.
Further fallout from the libc/openssl sha2 symbol collision.
PR lib/58039

(martin)

2024-03-24 20:27:33 UTC netbsd-10 commitmail json YAML

2024-03-24 20:27:04 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by martin in ticket #645):
usr.sbin/sysinst/gpt.c: revision 1.32
PR 58061: fix bug in the GPT backend: when inserting a partition
(i.e. not adding it at the end) a bogus ID was returned for the new
partition.

(bouyer)

2024-03-24 20:26:14 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by martin in ticket #644):
usr.sbin/sysinst/configmenu.c: revision 1.19
PR 58062: fix a bug I introduced with the https support: update
the pkgsrc/binary pkgs download URL not only when https transport
is selected.

(bouyer)

2024-03-24 20:24:29 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by martin in ticket #643):
distrib/notes/prep/contents: revision 1.8
distrib/notes/hpcsh/contents: revision 1.9
distrib/notes/ews4800mips/contents: revision 1.8
distrib/notes/evbarm/contents: revision 1.16
distrib/notes/newsmips/contents: revision 1.8
distrib/notes/landisk/contents: revision 1.9
distrib/notes/arc/contents: revision 1.8
distrib/notes/sun2/contents: revision 1.8
distrib/notes/vax/contents: revision 1.17
distrib/notes/mac68k/contents: revision 1.26
distrib/notes/cats/contents: revision 1.8
distrib/notes/mvme68k/contents: revision 1.19
distrib/notes/rs6000/contents: revision 1.8
distrib/notes/i386/contents: revision 1.36
distrib/notes/alpha/contents: revision 1.26
distrib/notes/hpcmips/contents: revision 1.16
distrib/notes/sparc64/contents: revision 1.13
distrib/notes/hpcarm/contents: revision 1.9
distrib/notes/emips/contents: revision 1.8
distrib/notes/sun3/contents: revision 1.22
distrib/notes/common/main: revision 1.573
distrib/notes/x68k/contents: revision 1.23
distrib/notes/sgimips/contents: revision 1.8
distrib/notes/sandpoint/contents: revision 1.8
distrib/notes/mmeye/contents: revision 1.9
distrib/notes/common/main: revision 1.574
distrib/notes/pmax/contents: revision 1.23
distrib/notes/shark/contents: revision 1.8
distrib/notes/sparc/contents: revision 1.30
distrib/notes/vax/xfer: revision 1.16
distrib/notes/news68k/contents: revision 1.12
distrib/notes/common/sysinst: revision 1.113
distrib/notes/hp300/contents: revision 1.23
distrib/notes/next68k/contents: revision 1.13
distrib/notes/amiga/contents: revision 1.26
distrib/notes/hppa/contents: revision 1.8
distrib/notes/acorn32/contents: revision 1.8
distrib/notes/ofppc/contents: revision 1.9
distrib/notes/common/contents: revision 1.187
distrib/notes/macppc/contents: revision 1.20
distrib/notes/evbppc/contents: revision 1.10
distrib/notes/atari/contents: revision 1.26
distrib/notes/amd64/contents: revision 1.14
distrib/notes/bebox/contents: revision 1.8
Various style fixes (and some of VAX related errors and copy&pastos),
from Mouse on tech-install.
Use single-arg "Lk" macro for a link so we can get reasonable results
both in .more and .html output (still a bit odd, but better than before IMHO).

(bouyer)

2024-03-12 10:19:02 UTC netbsd-10 commitmail json YAML

2024-03-12 10:14:28 UTC netbsd-10 commitmail json YAML

2024-03-12 10:13:05 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kre in ticket #635):

usr.bin/kdump/kdump.c: revision 1.141
usr.bin/kdump/kdump.c: revision 1.142
usr.bin/kdump/kdump.c: revision 1.143
usr.bin/kdump/kdump.c: revision 1.144

PR/57918: Taylor R Campbell: Don't try to print symbolically ioctls that
have bits set on the high 32 bits of a 64 bit long.

PR bin/57918

Redo the previous correctly, the test should be whether or not only the
bottom 32 bits are set, rather than whether any of bits 32..63 are set.

This makes no difference if u_long (or unsigned long long) is 64 bits,
it is the same test in that case, but if u_long were 128 bits there is
a notable difference (though for the particular issue observed in the PR,
it is likely to work either way).
decode some {g,s}etsockopt*.

kdump: keep the comment with its corresponding code
No binary change.

(martin)

2024-03-12 10:04:23 UTC netbsd-10 commitmail json YAML

Pull up the following revisions, requested by mrg in ticket #634:

usr.bin/audio/common/auconv.h                  up to 1.6
usr.bin/audio/common/audio.c                    up to 1.27
usr.bin/audio/common/decode.c                  up to 1.2
usr.bin/audio/common/libaudio.h                up to 1.22
usr.bin/audio/common/sun.c                      up to 1.11
usr.bin/audio/common/wav.c                      up to 1.22
usr.bin/audio/play/audioplay.1                  up to 1.34
usr.bin/audio/play/play.c                      up to 1.64
usr.bin/audio/record/audiorecord.1              up to 1.45
usr.bin/audio/record/record.c                  up to 1.58

- support for recording 24 bit .wav files
- read-overflow fixes for .wav files, and other fixes for the
  wav parser
- audioplay gains -n flag (no play, like make -n)

(martin)

2024-03-12 09:58:27 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #633):

sys/dev/ic/nvme.c: revision 1.69

nvme(4): Disestablish admin q interrupt while suspended.

And re-establish on resume.  Fixes nvmectl(8) after a suspend/resume
cycle on some systems.

Adapted from a patch by mrg@.

PR kern/58025

(martin)

2024-03-11 20:11:22 UTC netbsd-10 commitmail json YAML

2024-03-11 20:09:49 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #632):

sys/dev/pci/xhci_pci.c: revision 1.33

Consistently use cached chipset tag value.

(martin)

2024-03-11 20:08:16 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #631):

sys/dev/pci/ehci_pci.c: revision 1.76

Consistently use cached chipset tag value.

(martin)

2024-03-11 20:00:54 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by ozaki-r in ticket #630):

lib/libc/gen/getcap.c: revision 1.58

Fix memory leak in getent()

Memory was not freed if record was not found

(martin)

2024-03-11 19:39:23 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #629):

share/man/man4/wg.4: revision 1.7

wg(4): Spruce up example a bit.
- Suggest umask so the private keys aren't world readable.
- Suggest use of pre-shared key files.
- Use TEST-NET-1 and TEST-NET-2 addresses for the example instead of
  real publicly routable addresses.

Holding off on adding IPv6 example until the tun(4) issue is fixed
(PR bin/58013).

PR misc/58015

(martin)

2024-03-11 19:34:00 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #628):

sys/net/if_wg.c: revision 1.78

wg(4): Bind to CPU in wg_handle_packet.

Required by use of psref there.
Assert we're bound up front so we catch mistakes early, rather than
later on if we get unlucky in preemption and scheduling.

PR bin/58021

(martin)

2024-03-11 19:28:45 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #627):

sys/net/if_tun.c: revision 1.175

tun(4): Allow IPv6 packets with TUNSLMODE configured.
PR kern/58013

(martin)

2024-03-11 18:00:06 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #626):

sys/kern/sysv_shm.c: revision 1.142

Avoid overflow when computing kern.ipc.shmmax. Keep shmmax (bytes) and
shmall (pages) values aligned and use arithmetic everywhere instead
of shifts.

Should fix PR 57979

(martin)

2024-03-11 17:50:04 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #625):

usr.sbin/certctl/certctl.sh: revision 1.7

certctl(8): Pacify formal POSIX sh syntax.

According to POSIX 2018, the syntax between `then' and `elif' and
`fi' must be a _non-empty_ list of commands:
compound_list    : linebreak term
                | linebreak term separator
                ;
...
if_clause        : If compound_list Then compound_list else_part Fi
                | If compound_list Then compound_list          Fi
                ;
else_part        : Elif compound_list Then compound_list
                | Elif compound_list Then compound_list else_part
                | Else compound_list
                ;

https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18
+_10_02

NetBSD's sh(1) currently doesn't enforce this and allows an empty
sequence of commands, but let's not rely on that nonstandard quirk.

Noted in PR 57997.

(martin)

2024-03-11 17:44:14 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #624):

usr.sbin/wgconfig/wgconfig.8: revision 1.11

Fix typo in wgconfig(8)
From rudolf in PR 57663

(martin)

2024-03-11 17:25:20 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by christos in ticket #622):

etc/named.conf: revision 1.11
usr.sbin/postinstall/postinstall.in: revision 1.59
external/mpl/bind/dist/lib/isc/netmgr/netmgr-int.h: revision 1.11
usr.sbin/postinstall/postinstall.in: revision 1.60
usr.sbin/postinstall/postinstall.in: revision 1.61

Make sure that the extra field is maximally aligned since it is used for
other struct storage.
- fix named.conf (remove dnssec-enable option)
- use proper local variables instead of adding _ or other prefixes.
- centralize rm use
- use grep -q instead of > /dev/null
- reduce constant duplication

no local in loops, simplify eval (thanks kre)

postinstall: fix endless loop (since 2024-03-07)

remove obsolete option "dnssec-enable"

(martin)

2024-03-11 17:12:53 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #621):

usr.sbin/certctl/certctl.sh: revision 1.6

certctl(8): Avoid basename(1).

Saves some time running subprocesses.  Since this is only used for
non-directories (i.e., there's never trailing / on the inputs), it
suffices to delete the longest prefix matching glob `*/' with shell
parameter expansion -- much cheaper than spawning a subprocess.

Shaves off about 1/3 of the time spent in `certctl list' on an
aarch64 VM in qemu.

PR bin/57993

(martin)

2024-03-11 17:09:43 UTC netbsd-10 commitmail json YAML

src/distrib/sets/lists/base/mi@1.1314.2.6 / diff / nxr@1.1314.2.6
src/doc/3RDPARTY@1.1905.2.14 / diff / nxr@1.1905.2.14
src/external/mpl/mozilla-certdata/dist/certdata.txt@1.1.1.1.2.3 / diff / nxr@1.1.1.1.2.3
src/external/mpl/mozilla-certdata/share/Makefile@1.2.2.3 / diff / nxr@1.2.2.3
src/external/mpl/mozilla-certdata/share/certdata.awk@1.1.2.3 / diff / nxr@1.1.2.3
src/external/mpl/mozilla-certdata/share/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.1.pem deleted
src/external/mpl/mozilla-certdata/share/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem@1.1.2.3 / diff / nxr@1.1.2.3
src/external/mpl/mozilla-certdata/share/certs/Chambers_of_Commerce_Root_-_2008.pem deleted
src/external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_ECC_Root-01.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_ECC_Root-02.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_RSA_Root-01.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_RSA_Root-02.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/D-Trust_SBR_Root_CA_1_2022.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/D-Trust_SBR_Root_CA_2_2022.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/Global_Chambersign_Root_-_2008.pem deleted
src/external/mpl/mozilla-certdata/share/certs/Security_Communication_Root_CA.pem deleted
src/external/mpl/mozilla-certdata/share/certs/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem deleted
src/external/mpl/mozilla-certdata/share/certs/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem deleted
src/external/mpl/mozilla-certdata/share/certs/Telekom_Security_SMIME_ECC_Root_2021.pem@1.1.4.2 / diff / nxr@1.1.4.2
src/external/mpl/mozilla-certdata/share/certs/Telekom_Security_SMIME_RSA_Root_2023.pem@1.1.4.2 / diff / nxr@1.1.4.2
      :
(more 11 files)
Pull up following revision(s) (requested by riastradh in ticket #620):

external/mpl/mozilla-certdata/dist/certdata.txt up to 1.1.1.2
external/mpl/mozilla-certdata/share/certs/TrustCor_RootCert_CA-2.pem: file removal
external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_ECC_Root-01.pem: revision 1.1
distrib/sets/lists/base/mi: revision 1.1334
external/mpl/mozilla-certdata/share/certs/Global_Chambersign_Root_-_2008.pem: file removal
external/mpl/mozilla-certdata/share/certs/Telekom_Security_SMIME_ECC_Root_2021.pem: revision 1.1
doc/3RDPARTY: revision 1.1994
external/mpl/mozilla-certdata/share/certs/TrustAsia_Global_Root_CA_G3.pem: revision 1.1
external/mpl/mozilla-certdata/share/email.trust: revision 1.2
external/mpl/mozilla-certdata/share/certs/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem: file removal
external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_RSA_Root-01.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem: file removal
external/mpl/mozilla-certdata/share/certs/D-Trust_SBR_Root_CA_2_2022.pem: revision 1.1
external/mpl/mozilla-certdata/share/server.trust: revision 1.2
external/mpl/mozilla-certdata/share/certs/D-Trust_SBR_Root_CA_1_2022.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Telekom_Security_TLS_ECC_Root_2020.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/TrustCor_RootCert_CA-1.pem: file removal
external/mpl/mozilla-certdata/share/certs/Security_Communication_Root_CA.pem: file removal
external/mpl/mozilla-certdata/share/certs/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem: file removal
doc/3RDPARTY: revision 1.1982
external/mpl/mozilla-certdata/share/certs/Telekom_Security_TLS_RSA_Root_2023.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem: file removal
external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_ECC_Root-02.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Telekom_Security_SMIME_RSA_Root_2023.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Chambers_of_Commerce_Root_-_2008.pem: file removal
external/mpl/mozilla-certdata/share/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem: revision 1.2
external/mpl/mozilla-certdata/share/certs/TrustCor_ECA-1.pem: file removal
external/mpl/mozilla-certdata/share/Makefile: revision 1.4
external/mpl/mozilla-certdata/share/certs/TrustAsia_Global_Root_CA_G4.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/CommScope_Public_Trust_RSA_Root-02.pem: revision 1.1
external/mpl/mozilla-certdata/share/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.1.pem: file removal
external/mpl/mozilla-certdata/share/certdata.awk: revision 1.3

new mozilla-certdata out

mozilla-certdata: Update Mozilla certdata.txt.
nss hg date: 2024-02-12
nss hg revision: c17a3709bdd6e706040ac268a1d2b488c2fab5d8
Status:
Vendor Tag:    MOZILLA-CERTDATA
Release Tags:  mozilla-certdata-20240212
U src/external/mpl/mozilla-certdata/dist/certdata.txt
No conflicts created by this import
From http://mail-index.netbsd.org/source-changes/2024/03/03/msg150226.html:
Committed By:  riastradh
Date:          Sun Mar  3 04:24:41 UTC 2024

mozilla-certdata: Update reference in Makefile.
mozilla-certdata: regen
mozilla-certdata: Update set lists.

doc/3RDPARTY: mozilla-certdata is up-to-date.
mozilla-certdata: Fix typo: sprintf, not snprintf, in awk.
Only used during import, and only in case something is wrong anyway
requiring manual intervention, so no change to builds.

(martin)

2024-03-10 19:21:05 UTC netbsd-10 commitmail json YAML

2024-03-10 19:11:07 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #619):

sys/netinet6/in6.c: revision 1.292

netinet6: Avoid NPD on `ifconfig ifN inet6 ... pltime 0 vltime 0'.
PR kern/53922

(martin)

2024-03-10 19:07:42 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #618):

sys/netinet/if_arp.c: revision 1.312

Attribute debug message.
Fixes PR 57959

(martin)

2024-03-10 19:03:30 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #617):

usr.bin/getconf/getconf.c: revision 1.37
usr.bin/getconf/getconf.1: revision 1.14

PR/57875: Jason Bacon: Try again without an _ for portability.
getconf.1: Note that leading underscores in configuration
variable names are ignored by getconf(1).

While here, add a section with examples, and make the synopsis
more concise.

PR bin/57875

(martin)

2024-03-10 18:57:11 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #616):

sys/dev/usb/if_urtwn.c: revision 1.109

urtwn(4): Ditch old queued commands on overflow.
Don't increment ring->queued past what the task will decrement.

This is a stop-gap measure; really, we should just have one task for
each operation that is deferred to the task thread.

PR kern/57965

(martin)

2024-03-10 18:51:54 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #615):

sys/netinet6/raw_ip6.c: revision 1.184
sys/netinet6/icmp6.c: revision 1.256

Deliver timestamps also to raw sockets.
Fixes PR 57955

(martin)

2024-03-10 18:42:42 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #614):

lib/libc/net/getnameinfo.3: revision 1.43

Document the NI_NUMERICSCOPE flag.
PR lib/57832

(martin)

2024-03-10 18:36:12 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #613):

sys/dev/usb/usbdi.c: revision 1.248
sys/dev/usb/usbdi.c: revision 1.249

usbdi(9): Avoid calling ubm_softint with lock held and polling on.
usbdi(9): Avoid taking locks in usbd_transfer while polling.

PR kern/57783

(martin)

2024-03-10 13:44:35 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #612):

lib/libc/net/getnameinfo.c: revision 1.60

PR/57609: Carl Engvall: Add salen checks but accept larger sizes
(upto sockaddr_storage)

(martin)

2024-03-09 18:27:00 UTC netbsd-10 commitmail json YAML

2024-03-09 18:25:30 UTC netbsd-10 commitmail json YAML

Apply patch, requested by martin in ticket #623:
external/bsd/tcpdump/dist/print-ppp.c patch

Apply upstream commit 32027e199368dad9508965aae8cd8de5b6ab5231
to fix CVE-2020-803:

  PPP: When un-escaping, don't allocate a too-large buffer.

  The buffer should be big enough to hold the captured data, but it
  doesn't need to be big enough to hold the entire on-the-network packet,
  if we haven't captured all of it.

fixes PR 57586

(bouyer)

2024-02-27 05:27:39 UTC netbsd-10 commitmail json YAML

2024-02-26 10:34:55 UTC netbsd-10 commitmail json YAML

Amend tickets #313, #608 and #610 for additional changes

(martin)

2024-02-26 10:31:27 UTC netbsd-10 commitmail json YAML

Apply a patch from mrg to fix build fallout from ticket #610:

external/bsd/wpa/bin/hostapd/Makefile (apply patch)
external/mit/lua/lib/liblua/Makefile (apply patch)
external/mpl/bind/bin/dnssec/dnssec-verify/Makefile (apply patch)
external/mpl/dhcp/bin/relay/Makefile (apply patch)
external/mpl/dhcp/bin/server/Makefile (apply patch)
external/mpl/dhcp/lib/common/Makefile (apply patch)

Adapt compiler warning flags to the variable names used on this branch

(martin)

2024-02-26 08:36:26 UTC netbsd-10 commitmail json YAML

Ammend ticket #610 for additional pullups

(martin)

2024-02-26 08:32:25 UTC netbsd-10 commitmail json YAML

Additionally pull up the following to fix the build for ticket #610

external/mpl/bind/Makefile.inc 1.14

libexecinfo needs libelf.

(martin)

2024-02-25 17:19:16 UTC netbsd-10 commitmail json YAML

Fix entry for libbind9 (misapplied patch from ticket #610)

(martin)

2024-02-25 16:52:06 UTC netbsd-10 commitmail json YAML

Ammend ticket #610 for additional pullups

(martin)

2024-02-25 16:51:13 UTC netbsd-10 commitmail json YAML

Additionally pull up the following to fix the build for ticket #610:

share/mk/bsd.sys.mk 1.316

Allow overriding the language standard to something newer.

(martin)

2024-02-25 15:54:34 UTC netbsd-10 commitmail json YAML

2024-02-25 15:53:06 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #611):

sys/arch/evbarm/conf/std.bcm53xx: revision 1.22

Add ARM_HAS_VBAR

(martin)

2024-02-25 15:47:59 UTC netbsd-10 commitmail json YAML

Pull up the following, requested by christos in ticket #610:

distrib/sets/lists/base/mi 1.1333 (patch)
distrib/sets/lists/base/shl.mi 1.976 (patch)
distrib/sets/lists/comp/mi 1.2454 (patch)
distrib/sets/lists/debug/mi 1.427,1.429 (patch)
distrib/sets/lists/debug/shl.mi 1.338 (patch)
distrib/sets/lists/man/mi 1.1769,1.1771 (patch)
doc/3RDPARTY (manually edited)
external/mpl/bind/bin/confgen/tsig-keygen/Makefile up to 1.1
external/mpl/bind/bin/dnssec/dnssec-cds/Makefile up to 1.1
external/mpl/bind/bin/tools/mdig/Makefile      up to 1.1
external/mpl/bind/bin/tools/named-rrchecker/Makefile up to 1.1
external/mpl/bind/dist/bin/check/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/confgen/os.c        up to 1.2
external/mpl/bind/dist/bin/confgen/Makefile.am  up to 1.1.1.1
external/mpl/bind/dist/bin/confgen/tsig-keygen.c up to 1.2
external/mpl/bind/dist/bin/delv/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/dig/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/bin/dig/dighost.h        up to 1.2
external/mpl/bind/dist/bin/dig/readline.h      up to 1.2
external/mpl/bind/dist/bin/dnssec/Makefile.am  up to 1.1.1.1
external/mpl/bind/dist/bin/named/include/named/os.h up to 1.2
external/mpl/bind/dist/bin/named/include/named/transportconf.h up to 1.2
external/mpl/bind/dist/bin/named/xsl_p.h        up to 1.2
external/mpl/bind/dist/bin/named/os.c          up to 1.2
external/mpl/bind/dist/bin/named/dlz_dlopen_driver.c up to 1.2
external/mpl/bind/dist/bin/named/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/named/transportconf.c up to 1.2
external/mpl/bind/dist/bin/nsupdate/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/bin/rndc/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/tests/test_client.c  up to 1.2
external/mpl/bind/dist/bin/tests/test_server.c  up to 1.2
external/mpl/bind/dist/bin/tests/system/acl/tests_sh_acl.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/cds/tests_sh_cds.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/convert-junit-to-trs.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/makejournal.c up to 1.2
external/mpl/bind/dist/bin/tests/system/pytest.ini up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/start.sh.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/additional/tests_sh_additional.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/addzone/tests_sh_addzone.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/allow-query/tests_sh_allow_query.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/auth/tests_sh_auth.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/autosign/ns3/nsec3-to-nsec3.example.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/autosign/tests_sh_autosign.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/builtin/tests_sh_builtin.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/cacheclean/tests_sh_cacheclean.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/case/tests_sh_case.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog-bad1.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog-bad2.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog-bad3.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog-bad4.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog-bad5.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/ns2/dom-existing.example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/catz/tests_sh_catz.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/chain/tests_sh_chain.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-nsec3-alg.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-primaries-tls.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-server-christmas-tree.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-sig-signing-type.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-doh-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/warn-random-device.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/setup.sh up to 1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-primaries-dup.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-catz-zone-dup.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-doh-2.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-doh-3.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-catz-zone-primary-dup.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-2.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-3.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-badpath-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-badpath-2.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-badpath-3.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-default.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-doh-duplicates.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-allow-transfer-bad-port.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-allow-transfer-bad-proto-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-allow-transfer-bad-proto-2.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-allow-transfer-bad-proto-3.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-allow-transfer-bad-proto-4.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-badciphers.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-badprotocol.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-duplicatetls.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-ephemeral.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-nocert.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-nokey.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-none.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dot-primaries.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-duration.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-inline-secondary.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-masterfile-format-map.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy16.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy17.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy18.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy19.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy20.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-doh-4.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-doh-tlsopts.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-allow-transfer-encrypted.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-doh-tls-nokeycert.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-primaries-ephemeral.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-primaries.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-dot-tlsopts.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy13.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-lifetime.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-signatures-refresh.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-warning.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/lmdb-mapsize-largest.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/lmdb-mapsize-smallest.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkconf/tests_sh_checkconf.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns1/root.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns1/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns3/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/setup.sh up to 1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns10/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns10/root.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns8/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkds/ns8/root.hint up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checknames/tests_sh_checknames.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkzone/zones/zone1.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/checkzone/tests_sh_checkzone.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/cookie/tests_sh_cookie.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/stop.sh.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/_common/controls.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/_common/rndc.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/_common/rndc.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/_common/root.hint up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/database/tests_sh_database.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dialup/setup.sh up to 1.3
external/mpl/bind/dist/bin/tests/system/dialup/tests_sh_dialup.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/digdelv/ans8/ans.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/digdelv/tests_sh_digdelv.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/Makefile.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/driver.c up to 1.2
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver/driver.h up to 1.2
external/mpl/bind/dist/bin/tests/system/dlzexternal/tests_sh_dlzexternal.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dns64/ns1/named.conf1.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dns64/ns1/ipv4only.arpa.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dns64/ns1/named.conf2.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dns64/ns1/named.conf3.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dns64/tests_sh_dns64.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dnssec/tests_sh_dnssec.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dnstap/tests_dnstap.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dnstap/tests_sh_dnstap.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dsdigest/tests_sh_dsdigest.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dupsigs/tests_sh_dupsigs.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dyndb/driver/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dyndb/tests_sh_dyndb.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/ecdsa/tests_sh_ecdsa.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/eddsa/tests_sh_eddsa.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/ednscompliance/tests_sh_ednscompliance.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/emptyzones/tests_sh_emptyzones.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns3/named.args up to 1.3
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns5/named1.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns5/named2.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns5/root.hint up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/fetchlimit/tests_sh_fetchlimit.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/filter-aaaa/tests_sh_filter_aaaa.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/formerr/tests_sh_formerr.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/forward/ns3/root2.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/forward/tests_sh_forward.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/glue/tests_sh_glue.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/geoip2/tests_sh_geoip2.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/idna/tests_sh_idna.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary2.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary3.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary4.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary5.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary6.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/ns3/primary7.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/inline/tests_sh_inline.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/integrity/tests_sh_integrity.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/ixfr/tests_sh_ixfr.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keepalive/tests_sh_keepalive.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/legacy/tests_sh_legacy.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/limits/tests_sh_limits.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.abspathconf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.incconf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/logfileconfig/tests_sh_logfileconfig.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/masterfile/tests_sh_masterfile.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/masterformat/tests_sh_masterformat.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/metadata/tests_sh_metadata.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/mkeys/tests_sh_mkeys.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/names/tests_sh_names.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/notify/ns3/notify-source-port-test.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/notify/tests_sh_notify.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nslookup/tests_sh_nslookup.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-157.+157+23571.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-157.+157+23571.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-161.+161+23350.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-161.+161+23350.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-162.+162+00032.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-162.+162+00032.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-163.+163+48857.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-163.+163+48857.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-164.+164+09001.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-164.+164+09001.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-165.+165+61012.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/legacy/Klegacy-165.+165+61012.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns7/named1.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/ns7/named2.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/resolv.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsupdate/tests_sh_nsupdate.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nzd2nzf/tests_sh_nzd2nzf.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/padding/tests_sh_padding.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/pending/tests_sh_pending.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/pipelined/tests_sh_pipelined.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/reclimit/tests_sh_reclimit.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/redirect/tests_sh_redirect.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/resolver/ans10/ans.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/resolver/tests_sh_resolver.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rndc/tests_cve-2023-3341.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rndc/tests_sh_rndc.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rootkeysentinel/tests_sh_rootkeysentinel.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpz/tests_sh_rpz.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns3/named3.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzrecurse/tests_sh_rpzrecurse.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrchecker/tests_sh_rrchecker.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrl/tests_sh_rrl.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.fixed.good up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good1 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good10 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good11 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good12 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good13 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good14 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good15 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good16 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good17 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good18 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good19 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good2 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good20 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good21 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good22 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good23 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good24 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good3 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good4 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good5 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good6 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good7 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good8 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/reference.dig.out.random.good9 up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rrsetorder/tests_sh_rrsetorder.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rsabigexponent/tests_sh_rsabigexponent.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/runtime/tests_sh_runtime.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named4.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named.conf.in up to 1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/serve.stale.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/ns6/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/ns6/serve.stale.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/ns6/stale.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/serve-stale/tests_sh_serve_stale.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/sfcache/tests_sh_sfcache.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/smartsign/tests_sh_smartsign.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/sortlist/tests_sh_sortlist.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/spf/tests_sh_spf.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/staticstub/tests_sh_staticstub.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/statistics/tests_sh_statistics.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/statschannel/tests_sh_statschannel.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/stress/ns2/zone.template.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/stress/tests_stress_update.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/stub/tests_sh_stub.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/minimal.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/soa-without-dnskey.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns2/example.internal.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns5/internal2.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns6/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns6/root.hints up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests_sh_synthfromdnssec.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tcp/tests_sh_tcp.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tkey/tests_sh_tkey.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tools/tests_sh_tools.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-md5-legacy.+157+22023.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-md5-legacy.+157+22023.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha1-legacy.+161+50591.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha1-legacy.+161+50591.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha224-legacy.+162+50865.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha224-legacy.+162+50865.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha256-legacy.+163+38999.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha256-legacy.+163+38999.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha384-legacy.+164+56610.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha384-legacy.+164+56610.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha512-legacy.+165+22767.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/ns1/legacy/Khmac-sha512-legacy.+165+22767.private up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsig/tests_sh_tsig.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsiggss/tests_isc_spnego_flaws.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/tsiggss/tests_sh_tsiggss.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/unknown/tests_sh_unknown.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/upforwd/ns3/noprimary.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/upforwd/tests_sh_upforwd.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/verify/tests_sh_verify.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/views/tests_sh_views.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/wildcard/tests_sh_wildcard.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ans5/wrongname up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/named1.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/axfr-max-idle-time.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/axfr-max-transfer-time.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/dot-fallback.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/named2.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns1/named3.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/ns6/named.args up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/dig3.good up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xfer/tests_sh_xfer.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/xferquota/tests_sh_xferquota.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/zero/tests_sh_zero.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/zonechecks/tests_sh_zonechecks.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/mirror/tests_sh_mirror.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/qmin/tests_sh_qmin.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/ans3/ans.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/tests_connreset.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/ns1/root.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/ns2/example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/dispatch/ns2/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/kasp/tests_sh_kasp.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/nsec3/tests_sh_nsec3.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/journal/tests_sh_journal.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/tests_sh_keymgr2kasp.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/custom-test-driver up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/get_core_dumps.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/get_ports.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/ifconfig.sh.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/legacy.run.sh.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/index.txt up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/CA.cfg up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/CA.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/README up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client01.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client01.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client02-ns2.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client02-ns2.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client03-ns2-expired.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.client03-ns2-expired.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt01.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt01.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt02-no-san.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt02-no-san.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt03-expired.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv01.crt03-expired.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv02.crt01.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv02.crt01.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv03.crt01.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv03.crt01.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv04.crt01.example.com.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/certs/srv04.crt01.example.com.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/index.txt.attr up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/serial up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52001.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52002.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52003.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52004.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52005.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52006.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52007.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52008.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/newcerts/6BB3183CDEF52009.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/CA/private/CA.key up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns1/root.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/README.curl up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/conftest.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/dhparam3072.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/example.axfr.good up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/example8.axfr.good up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/get_openssl_version.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/prereq.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/stress_http_quota.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/tests_gnutls.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/tests_sh_doth.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/tests_sslyze.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns2/cert.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns2/key.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns2/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns3/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns4/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/doth/ns5/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/ns1/named.args up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/ns1/template.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/2037-pk11_numbits-crash-test.pkt up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/prereq.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/driver/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/driver/Makefile.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/driver/test-async.c up to 1.2
external/mpl/bind/dist/bin/tests/system/hooks/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/tests_async_plugin.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/ns1/example.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/hooks/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/ns1/example.net.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/host/tests_sh_host.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/mars.com.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/mars.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/zone1.com.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/zone1.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/zone2.com.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/ns2/zone2.conf up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/include-multiplecfg/tests_sh_include_multiplecfg.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/isctest/__init__.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/isctest/check.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/isctest/query.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/prereq.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/template.db.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/keyfromlabel/tests_sh_keyfromlabel.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns2/allowed.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns2/baddomain.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns2/gooddomain.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns2/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns2/rpz-external.local.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/external-rpz.local.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/first-rpz.local.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/fourth-rpz-extra.local.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/named.args up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/root.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/ns3/third-rpz-extra.local.db up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/rpzextra/tests_rpzextra.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/ns1/named.conf.in up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/clean.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/self-signed-cert.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/self-signed-key.pem up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/setup.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/tests.sh up to 1.1.1.1
external/mpl/bind/dist/bin/tests/system/transport-acl/tests_sh_transport_acl.py up to 1.1.1.1
external/mpl/bind/dist/bin/tests/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/tests/convert-trs-to-junit.py up to 1.1.1.1
external/mpl/bind/dist/bin/tools/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/bin/plugins/Makefile.am  up to 1.1.1.1
external/mpl/bind/dist/bin/plugins/filter-a.c  up to 1.2
external/mpl/bind/dist/bin/plugins/filter-a.rst up to 1.1.1.1
external/mpl/bind/dist/bin/Makefile.am          up to 1.1.1.1
external/mpl/bind/dist/doc/arm/_ext/iscconf.py  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/_ext/mergegrammar.py up to 1.1.1.1
external/mpl/bind/dist/doc/arm/_ext/namedconf.py up to 1.1.1.1
external/mpl/bind/dist/doc/arm/_ext/rndcconf.py up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dlz.inc.rst      up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-ops.inc.rst  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/rpz.inc.rst      up to 1.1.1.1
external/mpl/bind/dist/doc/arm/managed-keys.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/name-resolution.dia up to 1.1.1.1
external/mpl/bind/dist/doc/arm/name-resolution.png up to 1.1.1.1
external/mpl/bind/dist/doc/arm/primary-secondary.dia up to 1.1.1.1
external/mpl/bind/dist/doc/arm/security.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/sig0.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/config-auth.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/tsig.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/build.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/plugins.inc.rst  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/doc/arm/advanced.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/catz.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter1.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter10.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter2.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter3.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter4.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter5.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter6.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter7.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/chapter9.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/config-intro.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/config-resolve.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-security-overview.dia up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-security-overview.png up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-servers.dia  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-servers.png  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-tree.dia    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dns-tree.png    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/dyndb.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/intro-dns-bind.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/intro-security.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/introduction.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/logging-categories.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/pkcs11.inc.rst  up to 1.1.1.1
external/mpl/bind/dist/doc/arm/platforms.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/primary-secondary.png up to 1.1.1.1
external/mpl/bind/dist/doc/arm/recursive-query.dia up to 1.1.1.1
external/mpl/bind/dist/doc/arm/recursive-query.png up to 1.1.1.1
external/mpl/bind/dist/doc/arm/requirements.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/resolver-forward.dia up to 1.1.1.1
external/mpl/bind/dist/doc/arm/resolver-forward.png up to 1.1.1.1
external/mpl/bind/dist/doc/arm/tkey.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/arm/troubleshooting.inc.rst up to 1.1.1.1
external/mpl/bind/dist/doc/arm/zones.inc.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/misc/parsegrammar.py up to 1.1.1.1
external/mpl/bind/dist/doc/misc/primary.zoneopt up to 1.1.1.1
external/mpl/bind/dist/doc/misc/rndc.grammar    up to 1.1.1.1
external/mpl/bind/dist/doc/misc/secondary.zoneopt up to 1.1.1.1
external/mpl/bind/dist/doc/misc/cfg_test.c      up to 1.2
external/mpl/bind/dist/doc/misc/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/doc/misc/checkgrammar.py up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-dsfromkey.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-importkey.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-keyfromlabel.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-keygen.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-revoke.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-settime.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-signzone.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-verify.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/filter-a.8in    up to 1.1.1.1
external/mpl/bind/dist/doc/man/filter-a.rst    up to 1.1.1.1
external/mpl/bind/dist/doc/man/named-checkconf.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/named-journalprint.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/named-checkzone.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/named-nzd2nzf.1in up to 1.1.1.1
external/mpl/bind/dist/doc/man/nsec3hash.1in    up to 1.1.1.1
external/mpl/bind/dist/doc/man/named-compilezone.1in up to 1.3
external/mpl/bind/dist/doc/man/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/doc/man/dnssec-cds.1in  up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.0.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.1.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.10.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.11.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.12.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.13.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.14.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.15.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.16.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.17.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.18.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.19.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.2.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.20.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.21.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.22.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.23.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.24.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.3.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.4.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.5.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.6.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.7.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.8.rst up to 1.1.1.1
external/mpl/bind/dist/doc/notes/notes-9.18.9.rst up to 1.1.1.1
external/mpl/bind/dist/doc/Makefile.am          up to 1.1.1.1
external/mpl/bind/dist/Makefile.am              up to 1.1.1.1
external/mpl/bind/dist/Makefile.docs            up to 1.1.1.1
external/mpl/bind/dist/SECURITY.md              up to 1.1.1.1
external/mpl/bind/dist/ar-lib                  up to 1.1.1.1
external/mpl/bind/dist/fuzz/Makefile.am        up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_master_load.in/date.db up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_master_load.in/generate.db up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_master_load.in/include.db up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_master_load.in/minimal.db up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/openpgpkey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/afsdb up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/amtrelay up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/any_tsig up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/avc up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/caa up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/cdnskey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/cds up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/cert up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ch_a up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/class1234_type65533 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/cname up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/csync up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/dlv up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/dname up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/dnskey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/doa up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ds up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/eui48 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/eui64 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/gid up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/gpos up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/hinfo up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/hip up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/hs_a up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_a up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_a6 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_aaaa up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/nxt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_apl up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_atma up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_dhcid up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_eid up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_kx up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_nimloc up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_nsap up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_nsap_ptr up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_px up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_srv up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/in_wks up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ipseckey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/isdn up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/key up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/keydata up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/l32 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/l64 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/loc up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/lp up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/mb up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/md up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/mf up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/mg up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/minfo up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/mr up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/mx up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/naptr up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/nid up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ninfo up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ns up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/nsec up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/nsec3 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/nsec3param up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/null up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/opt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ptr up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/rkey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/rp up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/rrsig up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/rt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/sig up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/sink up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/smimea up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/soa up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/spf up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/sshfp up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/ta up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/talink up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/tkey up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/tlsa up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/txt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/uid up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/uinfo up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/unspec up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/uri up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/x25 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.in/zonemd up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_master_load.c  up to 1.2
external/mpl/bind/dist/fuzz/dns_message_checksig.c up to 1.2
external/mpl/bind/dist/fuzz/dns_message_parse.c up to 1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromtext.c up to 1.2
external/mpl/bind/dist/fuzz/isc_lex_getmastertoken.c up to 1.2
external/mpl/bind/dist/fuzz/isc_lex_gettoken.c  up to 1.2
external/mpl/bind/dist/fuzz/dns_message_checksig.in/issue-3547 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_checksig.in/sig0 up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_checksig.in/tsig up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_checksig.in/tsig-reply up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-893515.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0a3807b25967.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0af8cee23ed0.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0b7820813414.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0bf0754502aa.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0c6c1a0dcff1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0ccf2a7952ea.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0dd75ab2e3f8.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0de21419c7e7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-0eb553c77d2b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1295da719914.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-131eff5d4a89.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1359eec5b20f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1410836d8ef5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-15df237e7dd9.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-17ecbe4230d4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1818a0a13743.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-191a3716d274.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1dcb02bb39d7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-1f25e4467b28.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-20aeb1ee571c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-20cc218f4c3a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-94044.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-240335cece1a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-24b76ef067ec.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-25305bdb78fe.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-258334bb1e33.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-25c433073c4b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-261086edd389.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-27326d79a152.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-275812229fac.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-27b65637a4b5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2938c8b1445b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-297325ce1762.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/cz.nic-24.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2b665de93d1a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2c08fd4dcb3d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2c60032e840c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2d1dc7672bf2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2d83e44b2f92.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2e70e80504cd.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-2fe12f38215a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3230c27a3abe.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-32392b7ae8a7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-34a3a57c8ae4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3655812d837d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/cz.nic-25.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3a137dd7b503.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3cd5f858a00d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3d25900ba1b1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-3e3cd0560440.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4266b7ed6d6a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-43c68a804d35.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-43d462943ca3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4434df5061b3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-478b516e964a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-49bb8231b39d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4aa7978e4119.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/cz.nic-26.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4bfca9820e10.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4dffd19c9afb.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4ec445e05f0c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4f2cbb78045a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-4f6cc6a12505.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5169d80942f3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5296a02226d1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-53ed4e7a29d6.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-54215b8b2b8e.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5634ef9088ee.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5b6b63dd703f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/cz.nic-3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5b9da3da657a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5c0ccc6b77bf.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5d979f41d421.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-5d9c67d54aec.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6303ab0cdf88.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-630463d00dac.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-63be4d8a1d68.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-63d46cd58251.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6400baa777ad.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-641b1b826491.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-646e3c9711e4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/issue-4189.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6491f22d5f5b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-651968863bc9.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-66197bb21ca4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-68f9625e0aec.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-69362e75d3be.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6a5efb202ad8.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6a93e44599bf.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6be5dd262530.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6c7b6f8c8afd.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-6e4e87d71bc5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-702a6a8add74.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-176998.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-72266173e768.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-75ae672e4cae.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-787896107cf3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-78ab38d04283.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-795193a1db70.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-797d68892908.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-7b5c63ad58fb.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-7d8144b4f9ac.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-7dbaeeb319be.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-7de0b8fa5185.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-805c5f9cc117.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-209207.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-832a9ff132b4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-836a160118ed.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-83d8a26b0ba1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-84363927a7c4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-871b17db22dc.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8847038e2f7d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8865e3e8fc58.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-88861957625d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-89108c64d256.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8a50cad26a32.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8bd3def5546b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-27166.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8c59124ecb07.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8df3ab8b6e61.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8dfc87b32ef5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8ec56dbf62d3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-8fa237c06042.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-902a3c05da11.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-928c3456965c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-933133e35070.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-935e0d54e9c9.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9505061ee351.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-968627e29186.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-289417.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-972c76703038.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9891a0862aac.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-98d15ca48eef.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9944d30084a1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-99de4b1b7c38.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9de0b2c0780d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9e3af51e2bcb.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9f0f1e4e817b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-9f48f3557a00.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a06ce069e6b3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a2a5b67b76b2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-345158.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a39dc6e6ee00.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a3c097b04746.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a3e871047ca3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a45373b1a726.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a4cb3a9bf3e7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a62833d96a66.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a790c5d85b6b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a880c5517d16.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-a8a01fa5c284.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-aa6cb7a11980.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-abfec4ff90c7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-357147.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ac3e9300db0c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ac990a516666.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ad5d6c0d0fb9.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ae10c96730e8.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ae4a22aa552a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-aec4625b6d42.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-aec8410bdb4f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-aec8b56210a1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b12fadba475b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b13de985759b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b1d9f8cb59df.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-438052.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b1e8adc5d017.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b323d823e01b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b454cbb43d66.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b46361010e76.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b4b611ab5fcc.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b65097187471.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b6701c25b6e1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b6f6cd200669.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b7c5ba0f7fb0.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b88e4bb4abba.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b8bf0052fb08.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-443089.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b9bc7f02a216.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-b9ce7339dddc.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ba7424594a0d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-bc9f1f65a3c4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-bd736b351783.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-be76dfe66118.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-be8375564939.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-bec0455a1678.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-bfbfcbd33796.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c0251ea00b00.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c10987825ecf.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-553818.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c1cc7bab8256.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c254e9d16be3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c2ba496f1449.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c2c3333bdb6c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c439937029cb.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c65ffcbdf7d0.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c672248dc8ea.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c67977887d95.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c68b9538d3e4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c7cd757cec7c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c7d81d83b94c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-577278.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c8a3d0ddc61d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c8b4afeff5e2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c968926dbec6.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c9b3f4c01ed7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-c9e67818c18c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-cd46ee3cac5a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-cd7b9a067681.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ce7878853fa2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-cefdad1b260f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-cf6c31a11c89.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d3c96f0d1490.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-608943.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d42af7b690a0.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d4af13b69f3d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d527fae0755f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d52f26e4f48b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d5eca764cd66.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d6e76abab3ad.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d71b9874bd1d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-d859bf5ce7e1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-dd118fa60462.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ddd14e3b6b59.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ddffaad18764.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-735918.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-de64ccbd4ce3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-de9bfd253114.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-df0844e4d6be.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-df703f24c477.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-dfe1e2881ac5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e0dfc9ad6f0f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e17381e39767.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e2a6cf354856.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e30893305aac.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e32409b3af66.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e3b5d9c9fe3f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-738261.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e3d1d67dc45d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e46fabf59388.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e474ce479e99.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e573b67bb9e3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e6d9636b026b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e7223c7f647d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e77695b27ad6.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e7935935808d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e7f900a70954.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e83789acdcc3.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e8c0eb5e12d1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-743121.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-e94e68b93183.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-eb9795edda17.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ebe452324465.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ec39cd58be84.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ec4a653441eb.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ecdced027574.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ed054f5982d5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-eed0dafd9dee.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f014a72684c2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f0b4dab8ce89.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f0d0da6b96f1.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-782674.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f122eda7b026.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f14b5e3ef15c.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f1d418e777ae.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f1e13c2d2e30.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f22e479dc6d6.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f273b06c78d4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f437926bc6c5.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f449e690e676.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f55da7de9012.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f587f4c6428f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f5bc579df1d2.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-818733.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f60e3510f25b.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f62bdc9dd4de.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f6edebc937bd.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f76469109b02.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f76f553f4fa0.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f797d11e3c4f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f799bb18a6b4.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f79a08509eca.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f7ecd481acc7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f8f516ea9428.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-f99e669d189d.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-868934.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fad2599d584a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fb5d54dfc593.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fbfeae8a5a7f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fc3efa6eb96a.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fd8135176e19.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fe15124e969f.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fe2b7e021de8.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ff5c3d4491e7.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-ffa6fed4d130.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/bind-systemtest-fff2972f8fa9.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-894122.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-928203.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/dns_message_parse.in/seed-951706.pkt up to 1.1.1.1
external/mpl/bind/dist/fuzz/isc_lex_getmastertoken.in/named.conf up to 1.1.1.1
external/mpl/bind/dist/fuzz/isc_lex_getmastertoken.in/simple up to 1.1.1.1
external/mpl/bind/dist/fuzz/isc_lex_gettoken.in/named.conf up to 1.1.1.1
external/mpl/bind/dist/fuzz/isc_lex_gettoken.in/simple up to 1.1.1.1
external/mpl/bind/dist/compile                  up to 1.1.1.1
external/mpl/bind/dist/depcomp                  up to 1.1.1.1
external/mpl/bind/dist/missing                  up to 1.1.1.1
external/mpl/bind/dist/test-driver              up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-d.+008+53461.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-d.+008+53461.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-e.+008+53973.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-e.+008+53973.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-n.+008+37464.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-n.+008+37464.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-p.+008+53461.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-p.+008+53461.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-private.+002+65316.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-private.+002+65316.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-q.+008+53461.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample-q.+008+53461.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+002+65316.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+002+65316.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+008+53461.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+008+53461.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+013+19786.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+013+19786.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+015+63663.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample.+015+63663.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+002+19823.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+002+19823.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+008+37993.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+008+37993.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+013+16384.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+013+16384.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+015+37529.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample2.+015+37529.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample3.+002+17187.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/comparekeys/Kexample3.+002+17187.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/Kdh.+002+18602.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/Krsa.+008+29238.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/tests/dns/Makefile.in    up to 1.1.1.1
external/mpl/bind/dist/tests/dns/acl_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/db_test.c      up to 1.2
external/mpl/bind/dist/tests/dns/dbdiff_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/dbiterator_test.c up to 1.2
external/mpl/bind/dist/tests/dns/dbversion_test.c up to 1.2
external/mpl/bind/dist/tests/dns/dh_test.c      up to 1.2
external/mpl/bind/dist/tests/dns/dispatch_test.c up to 1.2
external/mpl/bind/dist/tests/dns/dns64_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/dnstap_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/dst_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/geoip_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/keytable_test.c up to 1.2
external/mpl/bind/dist/tests/dns/master_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/mkraw.pl      up to 1.1.1.1
external/mpl/bind/dist/tests/dns/name_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/nsec3_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/nsec3param_test.c up to 1.2
external/mpl/bind/dist/tests/dns/private_test.c up to 1.2
external/mpl/bind/dist/tests/dns/rbt_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/rbtdb_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/rdata_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/rdataset_test.c up to 1.2
external/mpl/bind/dist/tests/dns/rdatasetstats_test.c up to 1.2
external/mpl/bind/dist/tests/dns/resolver_test.c up to 1.2
external/mpl/bind/dist/tests/dns/rsa_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/sigs_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/time_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/tsig_test.c    up to 1.2
external/mpl/bind/dist/tests/dns/update_test.c  up to 1.2
external/mpl/bind/dist/tests/dns/zonemgr_test.c up to 1.2
external/mpl/bind/dist/tests/dns/zt_test.c      up to 1.2
external/mpl/bind/dist/tests/dns/testdata/db/data.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dbiterator/zone1.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dbiterator/zone2.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/diff/zone1.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/diff/zone2.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/diff/zone3.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/dnstap.saved up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/dnstap.text up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/query.auth up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/query.recursive up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/response.auth up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dnstap/response.recursive up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/Ktest.+008+11349.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/Ktest.+008+11349.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/Ktest.+013+49130.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/Ktest.+013+49130.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/test1.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/test1.ecdsa256sig up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/test1.rsasha256sig up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dst/test2.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/dstrandom/random.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master1.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master10.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master11.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master12.data.in up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master13.data.in up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master14.data.in up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master15.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master16.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master17.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master18.data.in up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master2.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master3.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master4.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master5.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master6.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master7.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master8.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/master/master9.data up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3/1024.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3/2048.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3/4096.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3/min-1024.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3/min-2048.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/nsec3param/nsec3.db.signed up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testdata/zt/zone1.db up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testkeys/Kexample.+008+20386.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testkeys/Kexample.+008+20386.private up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testkeys/Kexample.+008+37464.key up to 1.1.1.1
external/mpl/bind/dist/tests/dns/testkeys/Kexample.+008+37464.private up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/domain.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/nameserver-v4.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/nameserver-v6-scoped.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/nameserver-v6.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-attempts.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-bad-ndots.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-debug.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-empty.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-ndots.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-timeout.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options-unknown.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/options.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/port.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/resolv.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/search.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/sortlist-v4.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/timeout.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/testdata/unknown.conf up to 1.1.1.1
external/mpl/bind/dist/tests/irs/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/tests/irs/Makefile.in    up to 1.1.1.1
external/mpl/bind/dist/tests/irs/resconf_test.c up to 1.2
external/mpl/bind/dist/tests/Makefile.am        up to 1.1.1.1
external/mpl/bind/dist/tests/Makefile.in        up to 1.1.1.1
external/mpl/bind/dist/tests/unit-test-driver.sh.in up to 1.1.1.1
external/mpl/bind/dist/tests/include/tests/dns.h up to 1.2
external/mpl/bind/dist/tests/include/tests/isc.h up to 1.2
external/mpl/bind/dist/tests/include/tests/ns.h up to 1.2
external/mpl/bind/dist/tests/isc/testdata/file/keep up to 1.1.1.1
external/mpl/bind/dist/tests/isc/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/tests/isc/Makefile.in    up to 1.1.1.1
external/mpl/bind/dist/tests/isc/aes_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/buffer_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/counter_test.c up to 1.2
external/mpl/bind/dist/tests/isc/crc64_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/doh_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/errno_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/file_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/hash_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/heap_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/hmac_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/ht_test.c      up to 1.2
external/mpl/bind/dist/tests/isc/lex_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/md_test.c      up to 1.2
external/mpl/bind/dist/tests/isc/mem_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/netaddr_test.c up to 1.2
external/mpl/bind/dist/tests/isc/netmgr_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/parse_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/pool_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/quota_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/radix_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/random_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/regex_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/result_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/safe_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/siphash_test.c up to 1.2
external/mpl/bind/dist/tests/isc/sockaddr_test.c up to 1.2
external/mpl/bind/dist/tests/isc/stats_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/symtab_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/task_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/taskpool_test.c up to 1.2
external/mpl/bind/dist/tests/isc/time_test.c    up to 1.2
external/mpl/bind/dist/tests/isc/timer_test.c  up to 1.2
external/mpl/bind/dist/tests/isc/uv_wrap.h      up to 1.2
external/mpl/bind/dist/tests/isccfg/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/tests/isccfg/Makefile.in up to 1.1.1.1
external/mpl/bind/dist/tests/isccfg/duration_test.c up to 1.2
external/mpl/bind/dist/tests/isccfg/parser_test.c up to 1.2
external/mpl/bind/dist/tests/libtest/Makefile.am up to 1.1.1.1
external/mpl/bind/dist/tests/libtest/Makefile.in up to 1.1.1.1
external/mpl/bind/dist/tests/libtest/dns.c      up to 1.2
external/mpl/bind/dist/tests/libtest/isc.c      up to 1.2
external/mpl/bind/dist/tests/libtest/ns.c      up to 1.2
external/mpl/bind/dist/tests/ns/testdata/notify/notify1.msg up to 1.1.1.1
external/mpl/bind/dist/tests/ns/testdata/notify/zone1.db up to 1.1.1.1
external/mpl/bind/dist/tests/ns/testdata/query/foo.db up to 1.1.1.1
external/mpl/bind/dist/tests/ns/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/tests/ns/Makefile.in    up to 1.1.1.1
external/mpl/bind/dist/tests/ns/listenlist_test.c up to 1.2
external/mpl/bind/dist/tests/ns/notify_test.c  up to 1.2
external/mpl/bind/dist/tests/ns/plugin_test.c  up to 1.2
external/mpl/bind/dist/tests/ns/query_test.c    up to 1.2
external/mpl/bind/dist/COPYING                  up to 1.1.1.1
external/mpl/bind/dist/NEWS                    up to 1.1.1.1
external/mpl/bind/dist/contrib/dlz/modules/mysql/Makefile up to 1.1.1.1
external/mpl/bind/dist/contrib/dlz/modules/mysqldyn/Makefile up to 1.1.1.1
external/mpl/bind/dist/AUTHORS                  up to 1.1.1.1
external/mpl/bind/dist/lib/bind9/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/lib/Makefile.am          up to 1.1.1.1
external/mpl/bind/dist/lib/dns/include/dns/transport.h up to 1.2
external/mpl/bind/dist/lib/dns/transport.c      up to 1.2
external/mpl/bind/dist/lib/dns/openssl_shim.c  up to 1.2
external/mpl/bind/dist/lib/dns/openssl_shim.h  up to 1.2
external/mpl/bind/dist/lib/dns/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/lib/irs/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/lib/isc/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/lib/isc/dir.c            up to 1.2
external/mpl/bind/dist/lib/isc/condition.c      up to 1.2
external/mpl/bind/dist/lib/isc/glob.c          up to 1.2
external/mpl/bind/dist/lib/isc/mutex.c          up to 1.2
external/mpl/bind/dist/lib/isc/errno.c          up to 1.2
external/mpl/bind/dist/lib/isc/resource.c      up to 1.2
external/mpl/bind/dist/lib/isc/stdio.c          up to 1.2
external/mpl/bind/dist/lib/isc/file.c          up to 1.2
external/mpl/bind/dist/lib/isc/net.c            up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/align.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/dir.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/glob.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/mutex.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/net.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/netdb.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/offset.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/stat.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/once.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/stdatomic.h up to 1.4
external/mpl/bind/dist/lib/isc/include/isc/stdtime.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/condition.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/attributes.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/syslog.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/thread.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/time.h up to 1.2
external/mpl/bind/dist/lib/isc/include/isc/tls.h up to 1.3
external/mpl/bind/dist/lib/isc/netmgr/timer.c  up to 1.2
external/mpl/bind/dist/lib/isc/netmgr/http.c    up to 1.2
external/mpl/bind/dist/lib/isc/netmgr/tlsdns.c  up to 1.5
external/mpl/bind/dist/lib/isc/netmgr/tlsstream.c up to 1.2
external/mpl/bind/dist/lib/isc/errno2result.c  up to 1.2
external/mpl/bind/dist/lib/isc/errno2result.h  up to 1.2
external/mpl/bind/dist/lib/isc/interfaceiter.c  up to 1.2
external/mpl/bind/dist/lib/isc/jemalloc_shim.h  up to 1.2
external/mpl/bind/dist/lib/isc/meminfo.c        up to 1.2
external/mpl/bind/dist/lib/isc/os.c            up to 1.2
external/mpl/bind/dist/lib/isc/os_p.h          up to 1.2
external/mpl/bind/dist/lib/isc/picohttpparser.c up to 1.2
external/mpl/bind/dist/lib/isc/picohttpparser.h up to 1.2
external/mpl/bind/dist/lib/isc/stdtime.c        up to 1.2
external/mpl/bind/dist/lib/isc/syslog.c        up to 1.2
external/mpl/bind/dist/lib/isc/thread.c        up to 1.2
external/mpl/bind/dist/lib/isc/time.c          up to 1.2
external/mpl/bind/dist/lib/isccc/Makefile.am    up to 1.1.1.1
external/mpl/bind/dist/lib/isccfg/include/isccfg/duration.h up to 1.2
external/mpl/bind/dist/lib/isccfg/Makefile.am  up to 1.1.1.1
external/mpl/bind/dist/lib/isccfg/duration.c    up to 1.2
external/mpl/bind/dist/lib/ns/include/ns/events.h up to 1.2
external/mpl/bind/dist/lib/ns/Makefile.am      up to 1.1.1.1
external/mpl/bind/dist/m4/ax_jemalloc.m4        up to 1.1.1.1
external/mpl/bind/dist/m4/ax_lib_lmdb.m4        up to 1.1.1.1
external/mpl/bind/dist/m4/ax_prog_cc_for_build.m4 up to 1.1.1.1
external/mpl/bind/dist/m4/ax_tls.m4            up to 1.1.1.1
external/mpl/bind/dist/ChangeLog                up to 1.1.1.1
external/mpl/bind/dist/Makefile.tests          up to 1.1.1.1
external/mpl/bind/dist/Makefile.top            up to 1.1.1.1
external/mpl/bind/include/bind.keys.h          up to 1.1
external/mpl/bind/bin/confgen/ddns-confgen/Makefile delete
external/mpl/bind/dist/LICENSES/Apache-2.0.txt  delete
external/mpl/bind/dist/LICENSES/Autoconf-exception-3.0.txt delete
external/mpl/bind/dist/LICENSES/BSD-2-Clause.txt delete
external/mpl/bind/dist/LICENSES/BSD-3-Clause.txt delete
external/mpl/bind/dist/LICENSES/CC0-1.0.txt    delete
external/mpl/bind/dist/LICENSES/FSFAP.txt      delete
external/mpl/bind/dist/LICENSES/GPL-3.0-or-later.txt delete
external/mpl/bind/dist/LICENSES/ISC.txt        delete
external/mpl/bind/dist/LICENSES/LLVM-exception.txt delete
external/mpl/bind/dist/LICENSES/MIT.txt        delete
external/mpl/bind/dist/LICENSES/MPL-2.0.txt    delete
external/mpl/bind/dist/CODE_OF_CONDUCT          delete
external/mpl/bind/dist/CONTRIBUTING            delete
external/mpl/bind/dist/HISTORY                  delete
external/mpl/bind/dist/HISTORY.md              delete
external/mpl/bind/dist/Kyuafile                delete
external/mpl/bind/dist/OPTIONS                  delete
external/mpl/bind/dist/README                  delete
external/mpl/bind/dist/autogen.sh              delete
external/mpl/bind/dist/bind.keys.h              delete
external/mpl/bind/dist/config.h.win32          delete
external/mpl/bind/dist/config.threads.in        delete
external/mpl/bind/dist/dangerfile.py            delete
external/mpl/bind/dist/mkinstalldirs            delete
external/mpl/bind/dist/version                  delete
external/mpl/bind/dist/bin/check/win32/checkconf.vcxproj.filters.in delete
external/mpl/bind/dist/bin/check/win32/checkconf.vcxproj.in delete
external/mpl/bind/dist/bin/check/win32/checkconf.vcxproj.user delete
external/mpl/bind/dist/bin/check/win32/checktool.vcxproj.filters.in delete
external/mpl/bind/dist/bin/check/win32/checktool.vcxproj.in delete
external/mpl/bind/dist/bin/check/win32/checktool.vcxproj.user delete
external/mpl/bind/dist/bin/check/win32/checkzone.vcxproj.filters.in delete
external/mpl/bind/dist/bin/check/win32/checkzone.vcxproj.in delete
external/mpl/bind/dist/bin/check/win32/checkzone.vcxproj.user delete
external/mpl/bind/dist/bin/confgen/ddns-confgen.c delete
external/mpl/bind/dist/bin/confgen/unix/Makefile.in delete
external/mpl/bind/dist/bin/confgen/unix/os.c    delete
external/mpl/bind/dist/bin/confgen/win32/confgentool.vcxproj.filters.in delete
external/mpl/bind/dist/bin/confgen/win32/confgentool.vcxproj.in delete
external/mpl/bind/dist/bin/confgen/win32/confgentool.vcxproj.user delete
external/mpl/bind/dist/bin/confgen/win32/ddnsconfgen.vcxproj.filters.in delete
external/mpl/bind/dist/bin/confgen/win32/ddnsconfgen.vcxproj.in delete
external/mpl/bind/dist/bin/confgen/win32/ddnsconfgen.vcxproj.user delete
external/mpl/bind/dist/bin/confgen/win32/os.c  delete
external/mpl/bind/dist/bin/confgen/win32/rndcconfgen.vcxproj.filters.in delete
external/mpl/bind/dist/bin/confgen/win32/rndcconfgen.vcxproj.in delete
external/mpl/bind/dist/bin/confgen/win32/rndcconfgen.vcxproj.user delete
external/mpl/bind/dist/bin/delv/win32/delv.vcxproj.filters.in delete
external/mpl/bind/dist/bin/delv/win32/delv.vcxproj.in delete
external/mpl/bind/dist/bin/delv/win32/delv.vcxproj.user delete
external/mpl/bind/dist/bin/dig/include/dig/dig.h delete
external/mpl/bind/dist/bin/dig/win32/dig.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dig/win32/dig.vcxproj.in delete
external/mpl/bind/dist/bin/dig/win32/dig.vcxproj.user delete
external/mpl/bind/dist/bin/dig/win32/dighost.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dig/win32/dighost.vcxproj.in delete
external/mpl/bind/dist/bin/dig/win32/dighost.vcxproj.user delete
external/mpl/bind/dist/bin/dig/win32/host.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dig/win32/host.vcxproj.in delete
external/mpl/bind/dist/bin/dig/win32/host.vcxproj.user delete
external/mpl/bind/dist/bin/dig/win32/nslookup.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dig/win32/nslookup.vcxproj.in delete
external/mpl/bind/dist/bin/dig/win32/nslookup.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/cds.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/cds.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/cds.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/dnssectool.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/dnssectool.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/dnssectool.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/dsfromkey.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/dsfromkey.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/dsfromkey.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/importkey.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/importkey.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/importkey.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/keyfromlabel.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/keyfromlabel.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/keyfromlabel.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/keygen.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/keygen.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/keygen.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/revoke.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/revoke.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/revoke.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/settime.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/settime.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/settime.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/signzone.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/signzone.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/signzone.vcxproj.user delete
external/mpl/bind/dist/bin/dnssec/win32/verify.vcxproj.filters.in delete
external/mpl/bind/dist/bin/dnssec/win32/verify.vcxproj.in delete
external/mpl/bind/dist/bin/dnssec/win32/verify.vcxproj.user delete
external/mpl/bind/dist/bin/named/bind9.xsl.h    delete
external/mpl/bind/dist/bin/named/convertxsl.pl  delete
external/mpl/bind/dist/bin/named/unix/include/named/os.h delete
external/mpl/bind/dist/bin/named/unix/Makefile.in delete
external/mpl/bind/dist/bin/named/unix/dlz_dlopen_driver.c delete
external/mpl/bind/dist/bin/named/unix/os.c      delete
external/mpl/bind/dist/bin/named/win32/include/named/ntservice.h delete
external/mpl/bind/dist/bin/named/win32/include/named/os.h delete
external/mpl/bind/dist/bin/named/win32/dlz_dlopen_driver.c delete
external/mpl/bind/dist/bin/named/win32/named.vcxproj.filters.in delete
external/mpl/bind/dist/bin/named/win32/named.vcxproj.in delete
external/mpl/bind/dist/bin/named/win32/named.vcxproj.user delete
external/mpl/bind/dist/bin/named/win32/ntservice.c delete
external/mpl/bind/dist/bin/named/win32/os.c    delete
external/mpl/bind/dist/bin/nsupdate/win32/nsupdate.vcxproj.filters.in delete
external/mpl/bind/dist/bin/nsupdate/win32/nsupdate.vcxproj.in delete
external/mpl/bind/dist/bin/nsupdate/win32/nsupdate.vcxproj.user delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11destroy.vcxproj.filters.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11destroy.vcxproj.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11destroy.vcxproj.user delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11keygen.vcxproj.filters.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11keygen.vcxproj.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11keygen.vcxproj.user delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11list.vcxproj.filters.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11list.vcxproj.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11list.vcxproj.user delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11tokens.vcxproj.filters.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11tokens.vcxproj.in delete
external/mpl/bind/dist/bin/pkcs11/win32/pk11tokens.vcxproj.user delete
external/mpl/bind/dist/bin/pkcs11/Makefile.in  delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-destroy.c delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-destroy.rst delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-keygen.c delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-keygen.rst delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-list.c delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-list.rst delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-tokens.c delete
external/mpl/bind/dist/bin/pkcs11/pkcs11-tokens.rst delete
external/mpl/bind/dist/bin/python/isc/tests/test-policies/01-keysize.pol delete
external/mpl/bind/dist/bin/python/isc/tests/test-policies/02-prepublish.pol delete
external/mpl/bind/dist/bin/python/isc/tests/test-policies/03-postpublish.pol delete
external/mpl/bind/dist/bin/python/isc/tests/test-policies/04-combined-pre-post.pol delete
external/mpl/bind/dist/bin/python/isc/tests/test-policies/05-numeric-zone.pol delete
external/mpl/bind/dist/bin/python/isc/tests/Makefile.in delete
external/mpl/bind/dist/bin/python/isc/tests/dnskey_test.py.in delete
external/mpl/bind/dist/bin/python/isc/tests/policy_test.py.in delete
external/mpl/bind/dist/bin/python/isc/tests/testdata/Kexample.com.+007+35529.key delete
external/mpl/bind/dist/bin/python/isc/tests/testdata/Kexample.com.+007+35529.private delete
external/mpl/bind/dist/bin/python/isc/Makefile.in delete
external/mpl/bind/dist/bin/python/isc/__init__.py.in delete
external/mpl/bind/dist/bin/python/isc/checkds.py.in delete
external/mpl/bind/dist/bin/python/isc/coverage.py.in delete
external/mpl/bind/dist/bin/python/isc/dnskey.py.in delete
external/mpl/bind/dist/bin/python/isc/eventlist.py.in delete
external/mpl/bind/dist/bin/python/isc/keydict.py.in delete
external/mpl/bind/dist/bin/python/isc/keyevent.py.in delete
external/mpl/bind/dist/bin/python/isc/keymgr.py.in delete
external/mpl/bind/dist/bin/python/isc/keyseries.py.in delete
external/mpl/bind/dist/bin/python/isc/keyzone.py.in delete
external/mpl/bind/dist/bin/python/isc/policy.py.in delete
external/mpl/bind/dist/bin/python/isc/rndc.py.in delete
external/mpl/bind/dist/bin/python/isc/utils.py.in delete
external/mpl/bind/dist/bin/python/Makefile.in  delete
external/mpl/bind/dist/bin/python/dnssec-checkds.py.in delete
external/mpl/bind/dist/bin/python/dnssec-checkds.rst delete
external/mpl/bind/dist/bin/python/dnssec-coverage.py.in delete
external/mpl/bind/dist/bin/python/dnssec-coverage.rst delete
external/mpl/bind/dist/bin/python/dnssec-keymgr.py.in delete
external/mpl/bind/dist/bin/python/dnssec-keymgr.rst delete
external/mpl/bind/dist/bin/python/setup.py      delete
external/mpl/bind/dist/bin/rndc/include/rndc/os.h delete
external/mpl/bind/dist/bin/rndc/rndc.conf      delete
external/mpl/bind/dist/bin/rndc/win32/rndc.vcxproj.filters.in delete
external/mpl/bind/dist/bin/rndc/win32/rndc.vcxproj.in delete
external/mpl/bind/dist/bin/rndc/win32/rndc.vcxproj.user delete
external/mpl/bind/dist/bin/rndc/win32/rndcutil.vcxproj.filters.in delete
external/mpl/bind/dist/bin/rndc/win32/rndcutil.vcxproj.in delete
external/mpl/bind/dist/bin/rndc/win32/rndcutil.vcxproj.user delete
external/mpl/bind/dist/bin/tests/bigtest/rndc.key delete
external/mpl/bind/dist/bin/tests/bigtest/README delete
external/mpl/bind/dist/bin/tests/bigtest/buildzones.sh delete
external/mpl/bind/dist/bin/tests/bigtest/tests.sh delete
external/mpl/bind/dist/bin/tests/bigtest/zones  delete
external/mpl/bind/dist/bin/tests/cfg_test.c    delete
external/mpl/bind/dist/bin/tests/headerdep_test.sh.in delete
external/mpl/bind/dist/bin/tests/makejournal.c  delete
external/mpl/bind/dist/bin/tests/named.conf    delete
external/mpl/bind/dist/bin/tests/prepare-softhsm2.sh delete
external/mpl/bind/dist/bin/tests/optional/byaddr_test.c delete
external/mpl/bind/dist/bin/tests/optional/Kchild.example.+005+33180.key delete
external/mpl/bind/dist/bin/tests/optional/Kchild.example.+005+33180.private delete
external/mpl/bind/dist/bin/tests/optional/Makefile.in delete
external/mpl/bind/dist/bin/tests/optional/adb_test.c delete
external/mpl/bind/dist/bin/tests/optional/backtrace_test.c delete
external/mpl/bind/dist/bin/tests/optional/db_test.c delete
external/mpl/bind/dist/bin/tests/optional/byname_test.c delete
external/mpl/bind/dist/bin/tests/optional/name_test.c delete
external/mpl/bind/dist/bin/tests/optional/fsaccess_test.c delete
external/mpl/bind/dist/bin/tests/optional/gsstest.c delete
external/mpl/bind/dist/bin/tests/optional/inter_test.c delete
external/mpl/bind/dist/bin/tests/optional/lex_test.c delete
external/mpl/bind/dist/bin/tests/optional/lfsr_test.c delete
external/mpl/bind/dist/bin/tests/optional/log_test.c delete
external/mpl/bind/dist/bin/tests/optional/master_test.c delete
external/mpl/bind/dist/bin/tests/optional/mempool_test.c delete
external/mpl/bind/dist/bin/tests/optional/nsecify.c delete
external/mpl/bind/dist/bin/tests/optional/ratelimiter_test.c delete
external/mpl/bind/dist/bin/tests/optional/rbt_test.c delete
external/mpl/bind/dist/bin/tests/optional/shutdown_test.c delete
external/mpl/bind/dist/bin/tests/optional/rbt_test.out delete
external/mpl/bind/dist/bin/tests/optional/rbt_test.txt delete
external/mpl/bind/dist/bin/tests/optional/rwlock_test.c delete
external/mpl/bind/dist/bin/tests/optional/serial_test.c delete
external/mpl/bind/dist/bin/tests/optional/sock_test.c delete
external/mpl/bind/dist/bin/tests/optional/sig0_test.c delete
external/mpl/bind/dist/bin/tests/optional/task_test.c delete
external/mpl/bind/dist/bin/tests/optional/sym_test.c delete
external/mpl/bind/dist/bin/tests/optional/timer_test.c delete
external/mpl/bind/dist/bin/tests/optional/zone_test.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/Makefile.in delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/create.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/find.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/genrsa.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/login.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/privrsa.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/pubrsa.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/session.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/sha1.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/sign.c delete
external/mpl/bind/dist/bin/tests/pkcs11/benchmarks/verify.c delete
external/mpl/bind/dist/bin/tests/pkcs11/Makefile.in delete
external/mpl/bind/dist/bin/tests/pkcs11/README  delete
external/mpl/bind/dist/bin/tests/startperf/clean.sh delete
external/mpl/bind/dist/bin/tests/startperf/README delete
external/mpl/bind/dist/bin/tests/startperf/makenames.pl delete
external/mpl/bind/dist/bin/tests/startperf/mkzonefile.pl delete
external/mpl/bind/dist/bin/tests/startperf/setup.sh delete
external/mpl/bind/dist/bin/tests/startperf/smallzone.db delete
external/mpl/bind/dist/bin/tests/system/cleanpkcs11.sh delete
external/mpl/bind/dist/bin/tests/system/conf.sh.win32 delete
external/mpl/bind/dist/bin/tests/system/ifconfig.bat delete
external/mpl/bind/dist/bin/tests/system/ifconfig.sh delete
external/mpl/bind/dist/bin/tests/system/start.sh delete
external/mpl/bind/dist/bin/tests/system/stop.sh delete
external/mpl/bind/dist/bin/tests/system/system-test-driver.sh delete
external/mpl/bind/dist/bin/tests/system/checkconf/bad-geoip-use-ecs.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/bad-inline-slave.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/bad-masters-dup.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/bad-maxttlmap.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/dnssec.4 delete
external/mpl/bind/dist/bin/tests/system/checkconf/deprecated-masterfile-format-map.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/good-lmdb-mapsize-largest.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/good-lmdb-mapsize-smallest.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/warn-dlv-auto.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/warn-dlv-dlv.example.com.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/warn-dlv-dlv.isc.org.conf delete
external/mpl/bind/dist/bin/tests/system/checkconf/warn-geoip-use-ecs.conf delete
external/mpl/bind/dist/bin/tests/system/checkds/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/checkdstool/clean.sh delete
external/mpl/bind/dist/bin/tests/system/checkdstool/dig.bat delete
external/mpl/bind/dist/bin/tests/system/checkdstool/dig.pl delete
external/mpl/bind/dist/bin/tests/system/checkdstool/dig.sh delete
external/mpl/bind/dist/bin/tests/system/checkdstool/missing.example.dnskey.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/missing.example.ds.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/none.example.dnskey.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/none.example.ds.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/ok.example.dnskey.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/ok.example.ds.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/prep.example.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/prep.example.ds.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/tests.sh delete
external/mpl/bind/dist/bin/tests/system/checkdstool/wrong.example.dnskey.db delete
external/mpl/bind/dist/bin/tests/system/checkdstool/wrong.example.ds.db delete
external/mpl/bind/dist/bin/tests/system/common/controls.conf.in delete
external/mpl/bind/dist/bin/tests/system/common/rndc.conf delete
external/mpl/bind/dist/bin/tests/system/common/rndc.key delete
external/mpl/bind/dist/bin/tests/system/common/root.hint delete
external/mpl/bind/dist/bin/tests/system/coverage/01-ksk-inactive/README delete
external/mpl/bind/dist/bin/tests/system/coverage/01-ksk-inactive/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/clean.sh delete
external/mpl/bind/dist/bin/tests/system/coverage/setup.sh delete
external/mpl/bind/dist/bin/tests/system/coverage/tests.sh delete
external/mpl/bind/dist/bin/tests/system/coverage/02-zsk-inactive/README delete
external/mpl/bind/dist/bin/tests/system/coverage/02-zsk-inactive/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/03-ksk-unpublished/README delete
external/mpl/bind/dist/bin/tests/system/coverage/03-ksk-unpublished/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/04-zsk-unpublished/README delete
external/mpl/bind/dist/bin/tests/system/coverage/04-zsk-unpublished/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/05-ksk-unpub-active/README delete
external/mpl/bind/dist/bin/tests/system/coverage/05-ksk-unpub-active/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/06-zsk-unpub-active/README delete
external/mpl/bind/dist/bin/tests/system/coverage/06-zsk-unpub-active/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/07-ksk-ttl/README delete
external/mpl/bind/dist/bin/tests/system/coverage/07-ksk-ttl/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/08-zsk-ttl/README delete
external/mpl/bind/dist/bin/tests/system/coverage/08-zsk-ttl/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/09-check-zsk/README delete
external/mpl/bind/dist/bin/tests/system/coverage/09-check-zsk/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/10-check-ksk/README delete
external/mpl/bind/dist/bin/tests/system/coverage/10-check-ksk/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/11-cutoff/README delete
external/mpl/bind/dist/bin/tests/system/coverage/11-cutoff/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/12-ksk-deletion/expect delete
external/mpl/bind/dist/bin/tests/system/coverage/13-dotted-dotless/expect delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/DNAME=10=example.net.= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/NS=10=example.com.= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/broken/dns.d/@/SOA=10=ns.example.com.=root.example.com.=None=None=None=None=None= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/example/dns.d/@/DNAME=10=example.net.= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/example/dns.d/@/NS=10=example.com.= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/example/dns.d/@/SOA=10=ns.example.com.=root.example.com.=2010062900=0=0=0=10= delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/dns-root/com/example/xfr.d/10.53.0.1 delete
external/mpl/bind/dist/bin/tests/system/dlz/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dlz/clean.sh delete
external/mpl/bind/dist/bin/tests/system/dlz/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/dlz/setup.sh delete
external/mpl/bind/dist/bin/tests/system/dlz/tests.sh delete
external/mpl/bind/dist/bin/tests/system/dlzexternal/ns1/dlzs.conf.in delete
external/mpl/bind/dist/bin/tests/system/dlzexternal/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver.c delete
external/mpl/bind/dist/bin/tests/system/dlzexternal/driver.h delete
external/mpl/bind/dist/bin/tests/system/dns64/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns1/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns1/root.db delete
external/mpl/bind/dist/bin/tests/system/dscp/ns2/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns2/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/clean.sh delete
external/mpl/bind/dist/bin/tests/system/dscp/setup.sh delete
external/mpl/bind/dist/bin/tests/system/dscp/tests.sh delete
external/mpl/bind/dist/bin/tests/system/dscp/ns3/hint.db delete
external/mpl/bind/dist/bin/tests/system/dscp/ns3/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns3/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns4/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns4/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns4/root.db delete
external/mpl/bind/dist/bin/tests/system/dscp/ns5/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns5/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns6/hint.db delete
external/mpl/bind/dist/bin/tests/system/dscp/ns6/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns6/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dscp/ns7/named.args delete
external/mpl/bind/dist/bin/tests/system/dscp/ns7/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/dyndb/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/filter-aaaa/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master2.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master3.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master4.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master5.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master6.db.in delete
external/mpl/bind/dist/bin/tests/system/inline/ns3/master7.db.in delete
external/mpl/bind/dist/bin/tests/system/ixfr/ns1/startme delete
external/mpl/bind/dist/bin/tests/system/kasp/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/keymgr/01-ksk-inactive/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/01-ksk-inactive/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/clean.sh delete
external/mpl/bind/dist/bin/tests/system/keymgr/setup.sh delete
external/mpl/bind/dist/bin/tests/system/keymgr/policy.good delete
external/mpl/bind/dist/bin/tests/system/keymgr/policy.sample delete
external/mpl/bind/dist/bin/tests/system/keymgr/testpolicy.py delete
external/mpl/bind/dist/bin/tests/system/keymgr/tests.sh delete
external/mpl/bind/dist/bin/tests/system/keymgr/02-zsk-inactive/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/02-zsk-inactive/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/03-ksk-unpublished/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/03-ksk-unpublished/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/04-zsk-unpublished/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/04-zsk-unpublished/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/05-ksk-unpub-active/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/05-ksk-unpub-active/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/06-zsk-unpub-active/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/06-zsk-unpub-active/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/07-ksk-ttl/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/07-ksk-ttl/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/08-zsk-ttl/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/08-zsk-ttl/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/09-no-keys/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/09-no-keys/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/10-change-roll/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/10-change-roll/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/11-many-simul/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/11-many-simul/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/12-many-active/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/12-many-active/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/13-noroll/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/13-noroll/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/14-wrongalg/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/14-wrongalg/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/15-unspec/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/15-unspec/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/16-wrongalg-unspec/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/16-wrongalg-unspec/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/17-noforce/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/17-noforce/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/18-nonstd-prepub/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/18-nonstd-prepub/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/18-nonstd-prepub/policy.conf.in delete
external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/extra.sh delete
external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/README delete
external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/expect delete
external/mpl/bind/dist/bin/tests/system/keymgr/19-old-keys/policy.conf.in delete
external/mpl/bind/dist/bin/tests/system/keymgr/policy.conf.in delete
external/mpl/bind/dist/bin/tests/system/rpz/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/nsupdate/ns7/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/pipelined/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/pipelined/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/pkcs11/ns1/example.db.in delete
external/mpl/bind/dist/bin/tests/system/pkcs11/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/pkcs11/2037-pk11_numbits-crash-test.pkt delete
external/mpl/bind/dist/bin/tests/system/pkcs11/clean.sh delete
external/mpl/bind/dist/bin/tests/system/pkcs11/setup.sh delete
external/mpl/bind/dist/bin/tests/system/pkcs11/tests.sh delete
external/mpl/bind/dist/bin/tests/system/pkcs11/usepkcs11 delete
external/mpl/bind/dist/bin/tests/system/rndc/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.fixed.good delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good1 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good10 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good11 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good12 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good13 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good14 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good15 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good16 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good17 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good18 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good19 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good2 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good20 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good21 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good22 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good23 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good24 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good3 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good4 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good5 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good6 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good7 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good8 delete
external/mpl/bind/dist/bin/tests/system/rrsetorder/dig.out.random.good9 delete
external/mpl/bind/dist/bin/tests/system/rsabigexponent/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/rsabigexponent/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/shutdown/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/stress/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/system/stress/setup.pl delete
external/mpl/bind/dist/bin/tests/system/stress/tests.sh delete
external/mpl/bind/dist/bin/tests/system/stress/update.pl delete
external/mpl/bind/dist/bin/tests/system/statschannel/generic_dnspython.py delete
external/mpl/bind/dist/bin/tests/system/tcp/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/tkey/Makefile.in delete
external/mpl/bind/dist/bin/tests/system/tsig/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/ttl/prereq.sh delete
external/mpl/bind/dist/bin/tests/system/upforwd/ns3/nomaster.db delete
external/mpl/bind/dist/bin/tests/system/win32/bigkey.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/bigkey.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/bigkey.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/feature-test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/feature-test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/feature-test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/gencheck.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/gencheck.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/gencheck.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/keycreate.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/keycreate.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/keycreate.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/keydelete.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/keydelete.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/keydelete.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/pipequeries.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/pipequeries.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/pipequeries.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/win32/resolve.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/system/win32/resolve.vcxproj.in delete
external/mpl/bind/dist/bin/tests/system/win32/resolve.vcxproj.user delete
external/mpl/bind/dist/bin/tests/system/xfer/ns1/named.conf.in delete
external/mpl/bind/dist/bin/tests/testdata/wire/wire_test.data delete
external/mpl/bind/dist/bin/tests/testdata/wire/wire_test.data2 delete
external/mpl/bind/dist/bin/tests/testdata/wire/wire_test.data3 delete
external/mpl/bind/dist/bin/tests/testdata/wire/wire_test.data4 delete
external/mpl/bind/dist/bin/tests/win32/backtrace_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/backtrace_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/backtrace_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/inter_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/inter_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/inter_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/makejournal.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/makejournal.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/makejournal.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/rwlock_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/rwlock_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/rwlock_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/shutdown_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/shutdown_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/shutdown_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/sock_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/sock_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/sock_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/task_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/task_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/task_test.vcxproj.user delete
external/mpl/bind/dist/bin/tests/win32/timer_test.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tests/win32/timer_test.vcxproj.in delete
external/mpl/bind/dist/bin/tests/win32/timer_test.vcxproj.user delete
external/mpl/bind/dist/bin/tools/win32/arpaname.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tools/win32/arpaname.vcxproj.in delete
external/mpl/bind/dist/bin/tools/win32/arpaname.vcxproj.user delete
external/mpl/bind/dist/bin/tools/win32/journalprint.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tools/win32/journalprint.vcxproj.in delete
external/mpl/bind/dist/bin/tools/win32/journalprint.vcxproj.user delete
external/mpl/bind/dist/bin/tools/win32/mdig.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tools/win32/mdig.vcxproj.in delete
external/mpl/bind/dist/bin/tools/win32/mdig.vcxproj.user delete
external/mpl/bind/dist/bin/tools/win32/nsec3hash.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tools/win32/nsec3hash.vcxproj.in delete
external/mpl/bind/dist/bin/tools/win32/nsec3hash.vcxproj.user delete
external/mpl/bind/dist/bin/tools/win32/rrchecker.vcxproj.filters.in delete
external/mpl/bind/dist/bin/tools/win32/rrchecker.vcxproj.in delete
external/mpl/bind/dist/bin/tools/win32/rrchecker.vcxproj.user delete
external/mpl/bind/dist/bin/win32/BINDInstall/res/BINDInstall.ico delete
external/mpl/bind/dist/bin/win32/BINDInstall/res/BINDInstall.rc2 delete
external/mpl/bind/dist/bin/win32/BINDInstall/AccountInfo.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/AccountInfo.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.rc delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.vcxproj.filters.in delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.vcxproj.in delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstall.vcxproj.user delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstallDlg.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/BINDInstallDlg.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/DirBrowse.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/DirBrowse.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/StdAfx.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/StdAfx.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/VersionInfo.cpp delete
external/mpl/bind/dist/bin/win32/BINDInstall/VersionInfo.h delete
external/mpl/bind/dist/bin/win32/BINDInstall/resource.h delete
external/mpl/bind/dist/cocci/UV_RUNTIME_CHECK.spatch delete
external/mpl/bind/dist/cocci/config-h.spatch    delete
external/mpl/bind/dist/cocci/dns_message_create.spatch delete
external/mpl/bind/dist/cocci/dns_message_destroy.spatch delete
external/mpl/bind/dist/cocci/dns_name_copy-with-result.spatch delete
external/mpl/bind/dist/cocci/dns_name_copy.spatch delete
external/mpl/bind/dist/cocci/dns_name_copynf.spatch delete
external/mpl/bind/dist/cocci/dns_name_dup.disabled delete
external/mpl/bind/dist/cocci/dns_rbtnodechain_init.disabled delete
external/mpl/bind/dist/cocci/isc_buffer_allocate_never_fail.spatch delete
external/mpl/bind/dist/cocci/isc_event_allocat_never_fail.spatch delete
external/mpl/bind/dist/cocci/isc_mem_allocate_never_fail.spatch delete
external/mpl/bind/dist/cocci/isc_mem_create_never_fail.disabled delete
external/mpl/bind/dist/cocci/isc_mem_get_never_fail.spatch delete
external/mpl/bind/dist/cocci/isc_mem_putanddetach.spatch delete
external/mpl/bind/dist/cocci/isc_mem_strdup_never_fail.spatch delete
external/mpl/bind/dist/cocci/isc_mempool_create_cannot_fail.cocci delete
external/mpl/bind/dist/cocci/memcpy.spatch      delete
external/mpl/bind/dist/cocci/null-the-pointer-early.disabled delete
external/mpl/bind/dist/cocci/return-void-from-void.spatch delete
external/mpl/bind/dist/cocci/unreachable.spatch delete
external/mpl/bind/dist/contrib/dane/mkdane.sh  delete
external/mpl/bind/dist/contrib/dane/tlsa6698.pem delete
external/mpl/bind/dist/contrib/dlz/bin/dlzbdb/dlzbdb.c delete
external/mpl/bind/dist/contrib/dlz/bin/dlzbdb/Makefile.in delete
external/mpl/bind/dist/contrib/dlz/config.dlz.in delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_bdb_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_bdbhpt_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_dlopen_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_drivers.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_filesystem_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_ldap_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_mysql_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_odbc_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_postgres_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/dlz_stub_driver.h delete
external/mpl/bind/dist/contrib/dlz/drivers/include/dlz/sdlz_helper.h delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_bdb_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_bdbhpt_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_dlopen_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_drivers.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_filesystem_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_ldap_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_mysql_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_odbc_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_postgres_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/dlz_stub_driver.c delete
external/mpl/bind/dist/contrib/dlz/drivers/rules.in delete
external/mpl/bind/dist/contrib/dlz/drivers/sdlz_helper.c delete
external/mpl/bind/dist/contrib/dlz/example/win32/DLLMain.c delete
external/mpl/bind/dist/contrib/dlz/example/win32/dxdriver.def delete
external/mpl/bind/dist/contrib/dlz/example/win32/dxdriver.dsp delete
external/mpl/bind/dist/contrib/dlz/example/win32/dxdriver.dsw delete
external/mpl/bind/dist/contrib/dlz/example/win32/dxdriver.mak delete
external/mpl/bind/dist/contrib/dlz/modules/mysql/Makefile.in delete
external/mpl/bind/dist/contrib/dlz/modules/mysqldyn/Makefile.in delete
external/mpl/bind/dist/contrib/dnspriv/README.md delete
external/mpl/bind/dist/contrib/dnspriv/named.conf delete
external/mpl/bind/dist/contrib/dnspriv/nginx.conf delete
external/mpl/bind/dist/contrib/kasp/kasp.xml    delete
external/mpl/bind/dist/contrib/kasp/README      delete
external/mpl/bind/dist/contrib/kasp/kasp2policy.py delete
external/mpl/bind/dist/contrib/kasp/policy.good delete
external/mpl/bind/dist/contrib/scripts/dnssec-keyset.sh delete
external/mpl/bind/dist/contrib/scripts/named-bootconf.sh delete
external/mpl/bind/dist/doc/arm/advanced.rst    delete
external/mpl/bind/dist/doc/arm/build.rst        delete
external/mpl/bind/dist/doc/arm/catz.rst        delete
external/mpl/bind/dist/doc/arm/configuration.rst delete
external/mpl/bind/dist/doc/arm/dlz.rst          delete
external/mpl/bind/dist/doc/arm/dyndb.rst        delete
external/mpl/bind/dist/doc/arm/introduction.rst delete
external/mpl/bind/dist/doc/arm/logging-categories.rst delete
external/mpl/bind/dist/doc/arm/managed-keys.rst delete
external/mpl/bind/dist/doc/arm/pkcs11.rst      delete
external/mpl/bind/dist/doc/arm/platforms.rst    delete
external/mpl/bind/dist/doc/arm/plugins.rst      delete
external/mpl/bind/dist/doc/arm/requirements.rst delete
external/mpl/bind/dist/doc/arm/security.rst    delete
external/mpl/bind/dist/doc/arm/troubleshooting.rst delete
external/mpl/bind/dist/doc/man/dnssec-cds.8in  delete
external/mpl/bind/dist/doc/man/dnssec-checkds.8in delete
external/mpl/bind/dist/doc/man/dnssec-coverage.8in delete
external/mpl/bind/dist/doc/man/dnssec-dsfromkey.8in delete
external/mpl/bind/dist/doc/man/dnssec-checkds.rst delete
external/mpl/bind/dist/doc/man/dnssec-coverage.rst delete
external/mpl/bind/dist/doc/man/dnssec-importkey.8in delete
external/mpl/bind/dist/doc/man/dnssec-keyfromlabel.8in delete
external/mpl/bind/dist/doc/man/dnssec-keygen.8in delete
external/mpl/bind/dist/doc/man/dnssec-keymgr.8in delete
external/mpl/bind/dist/doc/man/dnssec-keymgr.rst delete
external/mpl/bind/dist/doc/man/dnssec-revoke.8in delete
external/mpl/bind/dist/doc/man/dnssec-settime.8in delete
external/mpl/bind/dist/doc/man/dnssec-signzone.8in delete
external/mpl/bind/dist/doc/man/dnssec-verify.8in delete
external/mpl/bind/dist/doc/man/named-checkconf.8in delete
external/mpl/bind/dist/doc/man/named-checkzone.8in delete
external/mpl/bind/dist/doc/man/named-compilezone.8in delete
external/mpl/bind/dist/doc/man/named-journalprint.8in delete
external/mpl/bind/dist/doc/man/named-nzd2nzf.8in delete
external/mpl/bind/dist/doc/man/nsec3hash.8in    delete
external/mpl/bind/dist/doc/man/pkcs11-destroy.8in delete
external/mpl/bind/dist/doc/man/pkcs11-destroy.rst delete
external/mpl/bind/dist/doc/man/pkcs11-keygen.8in delete
external/mpl/bind/dist/doc/man/pkcs11-keygen.rst delete
external/mpl/bind/dist/doc/man/pkcs11-list.8in  delete
external/mpl/bind/dist/doc/man/pkcs11-list.rst  delete
external/mpl/bind/dist/doc/man/pkcs11-tokens.8in delete
external/mpl/bind/dist/doc/man/pkcs11-tokens.rst delete
external/mpl/bind/dist/doc/doxygen/Doxyfile.in  delete
external/mpl/bind/dist/doc/doxygen/Makefile.in  delete
external/mpl/bind/dist/doc/doxygen/isc-footer.html delete
external/mpl/bind/dist/doc/doxygen/isc-header.html delete
external/mpl/bind/dist/doc/doxygen/mainpage    delete
external/mpl/bind/dist/doc/misc/master.zoneopt  delete
external/mpl/bind/dist/doc/misc/acl.grammar.rst delete
external/mpl/bind/dist/doc/misc/controls.grammar.rst delete
external/mpl/bind/dist/doc/misc/delegation-only.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/dnssec-policy.default.conf delete
external/mpl/bind/dist/doc/misc/dnssec-policy.grammar.rst delete
external/mpl/bind/dist/doc/misc/format-options.pl delete
external/mpl/bind/dist/doc/misc/forward.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/hint.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/in-view.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/key.grammar.rst delete
external/mpl/bind/dist/doc/misc/logging.grammar.rst delete
external/mpl/bind/dist/doc/misc/managed-keys.grammar.rst delete
external/mpl/bind/dist/doc/misc/master.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/mirror.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/options.active  delete
external/mpl/bind/dist/doc/misc/options.grammar.rst delete
external/mpl/bind/dist/doc/misc/parental-agents.grammar.rst delete
external/mpl/bind/dist/doc/misc/primaries.grammar.rst delete
external/mpl/bind/dist/doc/misc/redirect.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/rst-grammars.pl delete
external/mpl/bind/dist/doc/misc/rst-options.pl  delete
external/mpl/bind/dist/doc/misc/rst-zoneopt.pl  delete
external/mpl/bind/dist/doc/misc/server.grammar.rst delete
external/mpl/bind/dist/doc/misc/slave.zoneopt  delete
external/mpl/bind/dist/doc/misc/slave.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/static-stub.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/statistics-channels.grammar.rst delete
external/mpl/bind/dist/doc/misc/stub.zoneopt.rst delete
external/mpl/bind/dist/doc/misc/trust-anchors.grammar.rst delete
external/mpl/bind/dist/doc/misc/trusted-keys.grammar.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.0.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.1.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.10.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.11.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.12.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.13.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.14.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.15.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.16.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.17.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.18.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.19.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.2.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.20.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.21.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.22.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.34.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.23.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.24.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.25.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.26.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.27.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.28.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.29.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.3.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.30.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.31.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.32.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.33.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.4.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.5.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.6.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.7.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.8.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.9.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.35.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.36.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.37.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.38.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.39.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.40.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.41.rst delete
external/mpl/bind/dist/doc/notes/notes-9.16.42.rst delete
external/mpl/bind/dist/fuzz/FUZZING.md          delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-0 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-1 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-10 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-100 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-104 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-105 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-106 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-107 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-109 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-11 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-110 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-111 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-112 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-113 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-114 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-115 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-116 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-117 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-118 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-119 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-120 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-121 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-122 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-124 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-125 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-126 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-127 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-129 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-13 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-131 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-132 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-133 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-135 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-136 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-137 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-138 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-139 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-14 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-140 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-141 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-142 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-17 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-18 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-19 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-2 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-20 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-21 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-28 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-29 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-3 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-30 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-31 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-32 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-37 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-38 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-39 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-4 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-40 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-41 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-42 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-43 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-44 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-45 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-46 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-48 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-52 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-54 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-55 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-56 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-58 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-59 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-60 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-61 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-62 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-63 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-64 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-65 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-66 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-67 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-68 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-69 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-70 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-71 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-73 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-74 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-75 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-76 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-78 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-79 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-80 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-82 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-86 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-88 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-9 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-90 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-91 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-92 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-93 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-94 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-95 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-97 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-98 delete
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-99 delete
external/mpl/bind/dist/lib/bind9/include/bind9/Makefile.in delete
external/mpl/bind/dist/lib/bind9/include/bind9/version.h delete
external/mpl/bind/dist/lib/bind9/include/Makefile.in delete
external/mpl/bind/dist/lib/bind9/version.c      delete
external/mpl/bind/dist/lib/bind9/win32/DLLMain.c delete
external/mpl/bind/dist/lib/bind9/win32/libbind9.def delete
external/mpl/bind/dist/lib/bind9/win32/libbind9.vcxproj.filters.in delete
external/mpl/bind/dist/lib/bind9/win32/libbind9.vcxproj.in delete
external/mpl/bind/dist/lib/bind9/win32/libbind9.vcxproj.user delete
external/mpl/bind/dist/lib/bind9/win32/version.c delete
external/mpl/bind/dist/lib/Kyuafile            delete
external/mpl/bind/dist/lib/dns/Kyuafile        delete
external/mpl/bind/dist/lib/dns/dbtable.c        delete
external/mpl/bind/dist/lib/dns/dst_pkcs11.h    delete
external/mpl/bind/dist/lib/dns/dst_result.c    delete
external/mpl/bind/dist/lib/dns/ecdb.c          delete
external/mpl/bind/dist/lib/dns/gen-unix.h      delete
external/mpl/bind/dist/lib/dns/gen-win32.h      delete
external/mpl/bind/dist/lib/dns/lib.c            delete
external/mpl/bind/dist/lib/dns/mapapi          delete
external/mpl/bind/dist/lib/dns/pkcs11.c        delete
external/mpl/bind/dist/lib/dns/pkcs11ecdsa_link.c delete
external/mpl/bind/dist/lib/dns/pkcs11eddsa_link.c delete
external/mpl/bind/dist/lib/dns/pkcs11rsa_link.c delete
external/mpl/bind/dist/lib/dns/portlist.c      delete
external/mpl/bind/dist/lib/dns/timer.c          delete
external/mpl/bind/dist/lib/dns/tcpmsg.c        delete
external/mpl/bind/dist/lib/dns/version.c        delete
external/mpl/bind/dist/lib/dns/include/dns/Makefile.in delete
external/mpl/bind/dist/lib/dns/include/dns/dbtable.h delete
external/mpl/bind/dist/lib/dns/include/dns/ecdb.h delete
external/mpl/bind/dist/lib/dns/include/dns/lib.h delete
external/mpl/bind/dist/lib/dns/include/dns/lmdb.h delete
external/mpl/bind/dist/lib/dns/include/dns/portlist.h delete
external/mpl/bind/dist/lib/dns/include/dns/tcpmsg.h delete
external/mpl/bind/dist/lib/dns/include/dns/timer.h delete
external/mpl/bind/dist/lib/dns/include/dns/version.h delete
external/mpl/bind/dist/lib/dns/include/dst/Makefile.in delete
external/mpl/bind/dist/lib/dns/include/dst/result.h delete
external/mpl/bind/dist/lib/dns/include/Makefile.in delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-d.+008+53461.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-d.+008+53461.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-e.+008+53973.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-e.+008+53973.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-n.+008+37464.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-n.+008+37464.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-p.+008+53461.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-p.+008+53461.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-private.+002+65316.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-private.+002+65316.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-q.+008+53461.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample-q.+008+53461.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+002+65316.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+002+65316.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+008+53461.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+008+53461.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+013+19786.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+013+19786.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+015+63663.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample.+015+63663.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+002+19823.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+002+19823.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+008+37993.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+008+37993.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+013+16384.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+013+16384.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+015+37529.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample2.+015+37529.private delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample3.+002+17187.key delete
external/mpl/bind/dist/lib/dns/tests/comparekeys/Kexample3.+002+17187.private delete
external/mpl/bind/dist/lib/dns/tests/Kdh.+002+18602.key delete
external/mpl/bind/dist/lib/dns/tests/dbversion_test.c delete
external/mpl/bind/dist/lib/dns/tests/Kyuafile  delete
external/mpl/bind/dist/lib/dns/tests/Makefile.in delete
external/mpl/bind/dist/lib/dns/tests/acl_test.c delete
external/mpl/bind/dist/lib/dns/tests/db_test.c  delete
external/mpl/bind/dist/lib/dns/tests/dbdiff_test.c delete
external/mpl/bind/dist/lib/dns/tests/dbiterator_test.c delete
external/mpl/bind/dist/lib/dns/tests/dnstest.c  delete
external/mpl/bind/dist/lib/dns/tests/dh_test.c  delete
external/mpl/bind/dist/lib/dns/tests/dispatch_test.c delete
external/mpl/bind/dist/lib/dns/tests/dnstap_test.c delete
external/mpl/bind/dist/lib/dns/tests/rsa_test.c delete
external/mpl/bind/dist/lib/dns/tests/dnstest.h  delete
external/mpl/bind/dist/lib/dns/tests/dst_test.c delete
external/mpl/bind/dist/lib/dns/tests/geoip_test.c delete
external/mpl/bind/dist/lib/dns/tests/keytable_test.c delete
external/mpl/bind/dist/lib/dns/tests/master_test.c delete
external/mpl/bind/dist/lib/dns/tests/mkraw.pl  delete
external/mpl/bind/dist/lib/dns/tests/name_test.c delete
external/mpl/bind/dist/lib/dns/tests/nsec3_test.c delete
external/mpl/bind/dist/lib/dns/tests/nsec3param_test.c delete
external/mpl/bind/dist/lib/dns/tests/peer_test.c delete
external/mpl/bind/dist/lib/dns/tests/private_test.c delete
external/mpl/bind/dist/lib/dns/tests/rbt_serialize_test.c delete
external/mpl/bind/dist/lib/dns/tests/rbt_test.c delete
external/mpl/bind/dist/lib/dns/tests/rbtdb_test.c delete
external/mpl/bind/dist/lib/dns/tests/rdata_test.c delete
external/mpl/bind/dist/lib/dns/tests/rdataset_test.c delete
external/mpl/bind/dist/lib/dns/tests/rdatasetstats_test.c delete
external/mpl/bind/dist/lib/dns/tests/resolver_test.c delete
external/mpl/bind/dist/lib/dns/tests/result_test.c delete
external/mpl/bind/dist/lib/dns/tests/zt_test.c  delete
external/mpl/bind/dist/lib/dns/tests/sigs_test.c delete
external/mpl/bind/dist/lib/dns/tests/time_test.c delete
external/mpl/bind/dist/lib/dns/tests/tsig_test.c delete
external/mpl/bind/dist/lib/dns/tests/update_test.c delete
external/mpl/bind/dist/lib/dns/tests/zonemgr_test.c delete
external/mpl/bind/dist/lib/dns/tests/testdata/db/data.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/dbiterator/zone1.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/dbiterator/zone2.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/diff/zone1.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/diff/zone2.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/diff/zone3.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/dnstap.saved delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/dnstap.text delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/query.auth delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/query.recursive delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/response.auth delete
external/mpl/bind/dist/lib/dns/tests/testdata/dnstap/response.recursive delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/Ktest.+008+11349.key delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/Ktest.+008+11349.private delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/Ktest.+013+49130.key delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/Ktest.+013+49130.private delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/test1.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/test1.ecdsa256sig delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/test1.rsasha256sig delete
external/mpl/bind/dist/lib/dns/tests/testdata/dst/test2.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/dstrandom/random.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master1.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master10.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master11.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master12.data.in delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master13.data.in delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master14.data.in delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master15.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master16.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master17.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master18.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master2.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master3.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master4.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master5.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master6.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master7.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master8.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/master/master9.data delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3/1024.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3/2048.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3/4096.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3/min-1024.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3/min-2048.db delete
external/mpl/bind/dist/lib/dns/tests/testdata/nsec3param/nsec3.db.signed delete
external/mpl/bind/dist/lib/dns/tests/testdata/zt/zone1.db delete
external/mpl/bind/dist/lib/dns/tests/testkeys/Kexample.+008+20386.key delete
external/mpl/bind/dist/lib/dns/tests/testkeys/Kexample.+008+20386.private delete
external/mpl/bind/dist/lib/dns/tests/testkeys/Kexample.+008+37464.key delete
external/mpl/bind/dist/lib/dns/tests/testkeys/Kexample.+008+37464.private delete
external/mpl/bind/dist/lib/dns/tests/Krsa.+008+29238.key delete
external/mpl/bind/dist/lib/dns/win32/libdns.def.in delete
external/mpl/bind/dist/lib/dns/win32/DLLMain.c  delete
external/mpl/bind/dist/lib/dns/win32/gen.vcxproj.filters.in delete
external/mpl/bind/dist/lib/dns/win32/gen.vcxproj.in delete
external/mpl/bind/dist/lib/dns/win32/gen.vcxproj.user delete
external/mpl/bind/dist/lib/dns/win32/libdns.vcxproj.filters.in delete
external/mpl/bind/dist/lib/dns/win32/libdns.vcxproj.in delete
external/mpl/bind/dist/lib/dns/win32/libdns.vcxproj.user delete
external/mpl/bind/dist/lib/dns/win32/version.c  delete
external/mpl/bind/dist/lib/irs/include/irs/Makefile.in delete
external/mpl/bind/dist/lib/irs/include/irs/context.h delete
external/mpl/bind/dist/lib/irs/include/irs/dnsconf.h delete
external/mpl/bind/dist/lib/irs/include/irs/netdb.h.in delete
external/mpl/bind/dist/lib/irs/include/irs/platform.h.in delete
external/mpl/bind/dist/lib/irs/include/irs/types.h delete
external/mpl/bind/dist/lib/irs/include/irs/version.h delete
external/mpl/bind/dist/lib/irs/include/Makefile.in delete
external/mpl/bind/dist/lib/irs/Kyuafile        delete
external/mpl/bind/dist/lib/irs/context.c        delete
external/mpl/bind/dist/lib/irs/dnsconf.c        delete
external/mpl/bind/dist/lib/irs/gai_strerror.c  delete
external/mpl/bind/dist/lib/irs/getaddrinfo.c    delete
external/mpl/bind/dist/lib/irs/getnameinfo.c    delete
external/mpl/bind/dist/lib/irs/version.c        delete
external/mpl/bind/dist/lib/irs/tests/testdata/domain.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/nameserver-v4.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/nameserver-v6-scoped.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/nameserver-v6.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-bad-ndots.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-debug.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-empty.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-ndots.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-timeout.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options-unknown.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/options.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/port.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/resolv.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/search.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/sortlist-v4.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/timeout.conf delete
external/mpl/bind/dist/lib/irs/tests/testdata/unknown.conf delete
external/mpl/bind/dist/lib/irs/tests/Kyuafile  delete
external/mpl/bind/dist/lib/irs/tests/Makefile.in delete
external/mpl/bind/dist/lib/irs/tests/resconf_test.c delete
external/mpl/bind/dist/lib/irs/win32/include/irs/Makefile.in delete
external/mpl/bind/dist/lib/irs/win32/include/irs/netdb.h delete
external/mpl/bind/dist/lib/irs/win32/include/irs/platform.h delete
external/mpl/bind/dist/lib/irs/win32/include/Makefile.in delete
external/mpl/bind/dist/lib/irs/win32/DLLMain.c  delete
external/mpl/bind/dist/lib/irs/win32/Makefile.in delete
external/mpl/bind/dist/lib/irs/win32/libirs.def delete
external/mpl/bind/dist/lib/irs/win32/libirs.vcxproj.filters.in delete
external/mpl/bind/dist/lib/irs/win32/libirs.vcxproj.in delete
external/mpl/bind/dist/lib/irs/win32/libirs.vcxproj.user delete
external/mpl/bind/dist/lib/irs/win32/resconf.c  delete
external/mpl/bind/dist/lib/irs/win32/version.c  delete
external/mpl/bind/dist/lib/isc/Kyuafile        delete
external/mpl/bind/dist/lib/isc/backtrace-emptytbl.c delete
external/mpl/bind/dist/lib/isc/bind9.c          delete
external/mpl/bind/dist/lib/isc/bufferlist.c    delete
external/mpl/bind/dist/lib/isc/fsaccess.c      delete
external/mpl/bind/dist/lib/isc/lfsr.c          delete
external/mpl/bind/dist/lib/isc/lib_p.h          delete
external/mpl/bind/dist/lib/isc/pk11.c          delete
external/mpl/bind/dist/lib/isc/pk11_result.c    delete
external/mpl/bind/dist/lib/isc/version.c        delete
external/mpl/bind/dist/lib/isc/xoshiro128starstar.c delete
external/mpl/bind/dist/lib/isc/include/isc/Makefile.in delete
external/mpl/bind/dist/lib/isc/include/isc/bind9.h delete
external/mpl/bind/dist/lib/isc/include/isc/bufferlist.h delete
external/mpl/bind/dist/lib/isc/include/isc/fsaccess.h delete
external/mpl/bind/dist/lib/isc/include/isc/lfsr.h delete
external/mpl/bind/dist/lib/isc/include/isc/lib.h delete
external/mpl/bind/dist/lib/isc/include/isc/likely.h delete
external/mpl/bind/dist/lib/isc/include/isc/platform.h.in delete
external/mpl/bind/dist/lib/isc/include/isc/resultclass.h delete
external/mpl/bind/dist/lib/isc/include/isc/socket.h delete
external/mpl/bind/dist/lib/isc/include/isc/version.h delete
external/mpl/bind/dist/lib/isc/include/Makefile.in delete
external/mpl/bind/dist/lib/isc/include/pk11/Makefile.in delete
external/mpl/bind/dist/lib/isc/include/pk11/constants.h delete
external/mpl/bind/dist/lib/isc/include/pk11/internal.h delete
external/mpl/bind/dist/lib/isc/include/pk11/pk11.h delete
external/mpl/bind/dist/lib/isc/include/pk11/result.h delete
external/mpl/bind/dist/lib/isc/include/pk11/site.h delete
external/mpl/bind/dist/lib/isc/include/pkcs11/Makefile.in delete
external/mpl/bind/dist/lib/isc/include/pkcs11/pkcs11.h delete
external/mpl/bind/dist/lib/isc/netmgr/Makefile.in delete
external/mpl/bind/dist/lib/isc/pthreads/include/isc/Makefile.in delete
external/mpl/bind/dist/lib/isc/pthreads/include/isc/condition.h delete
external/mpl/bind/dist/lib/isc/pthreads/include/isc/mutex.h delete
external/mpl/bind/dist/lib/isc/pthreads/include/isc/once.h delete
external/mpl/bind/dist/lib/isc/pthreads/include/isc/thread.h delete
external/mpl/bind/dist/lib/isc/pthreads/include/Makefile.in delete
external/mpl/bind/dist/lib/isc/pthreads/Makefile.in delete
external/mpl/bind/dist/lib/isc/pthreads/condition.c delete
external/mpl/bind/dist/lib/isc/pthreads/mutex.c delete
external/mpl/bind/dist/lib/isc/pthreads/thread.c delete
external/mpl/bind/dist/lib/isc/tests/testdata/file/keep delete
external/mpl/bind/dist/lib/isc/tests/Kyuafile  delete
external/mpl/bind/dist/lib/isc/tests/Makefile.in delete
external/mpl/bind/dist/lib/isc/tests/aes_test.c delete
external/mpl/bind/dist/lib/isc/tests/buffer_test.c delete
external/mpl/bind/dist/lib/isc/tests/counter_test.c delete
external/mpl/bind/dist/lib/isc/tests/crc64_test.c delete
external/mpl/bind/dist/lib/isc/tests/errno_test.c delete
external/mpl/bind/dist/lib/isc/tests/file_test.c delete
external/mpl/bind/dist/lib/isc/tests/hash_test.c delete
external/mpl/bind/dist/lib/isc/tests/heap_test.c delete
external/mpl/bind/dist/lib/isc/tests/hmac_test.c delete
external/mpl/bind/dist/lib/isc/tests/ht_test.c  delete
external/mpl/bind/dist/lib/isc/tests/isctest.c  delete
external/mpl/bind/dist/lib/isc/tests/isctest.h  delete
external/mpl/bind/dist/lib/isc/tests/lex_test.c delete
external/mpl/bind/dist/lib/isc/tests/md_test.c  delete
external/mpl/bind/dist/lib/isc/tests/mem_test.c delete
external/mpl/bind/dist/lib/isc/tests/netaddr_test.c delete
external/mpl/bind/dist/lib/isc/tests/netmgr_test.c delete
external/mpl/bind/dist/lib/isc/tests/parse_test.c delete
external/mpl/bind/dist/lib/isc/tests/pool_test.c delete
external/mpl/bind/dist/lib/isc/tests/quota_test.c delete
external/mpl/bind/dist/lib/isc/tests/radix_test.c delete
external/mpl/bind/dist/lib/isc/tests/random_test.c delete
external/mpl/bind/dist/lib/isc/tests/regex_test.c delete
external/mpl/bind/dist/lib/isc/tests/result_test.c delete
external/mpl/bind/dist/lib/isc/tests/safe_test.c delete
external/mpl/bind/dist/lib/isc/tests/siphash_test.c delete
external/mpl/bind/dist/lib/isc/tests/sockaddr_test.c delete
external/mpl/bind/dist/lib/isc/tests/socket_test.c delete
external/mpl/bind/dist/lib/isc/tests/stats_test.c delete
external/mpl/bind/dist/lib/isc/tests/symtab_test.c delete
external/mpl/bind/dist/lib/isc/tests/task_test.c delete
external/mpl/bind/dist/lib/isc/tests/taskpool_test.c delete
external/mpl/bind/dist/lib/isc/tests/time_test.c delete
external/mpl/bind/dist/lib/isc/tests/timer_test.c delete
external/mpl/bind/dist/lib/isc/tests/uv_wrap.h  delete
external/mpl/bind/dist/lib/isc/unix/include/isc/Makefile.in delete
external/mpl/bind/dist/lib/isc/unix/include/isc/align.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/dir.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/net.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/netdb.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/offset.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/stat.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/stdatomic.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/stdtime.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/syslog.h delete
external/mpl/bind/dist/lib/isc/unix/include/isc/time.h delete
external/mpl/bind/dist/lib/isc/unix/include/Makefile.in delete
external/mpl/bind/dist/lib/isc/unix/Makefile.in delete
external/mpl/bind/dist/lib/isc/unix/dir.c      delete
external/mpl/bind/dist/lib/isc/unix/errno.c    delete
external/mpl/bind/dist/lib/isc/unix/errno2result.c delete
external/mpl/bind/dist/lib/isc/unix/errno2result.h delete
external/mpl/bind/dist/lib/isc/unix/file.c      delete
external/mpl/bind/dist/lib/isc/unix/fsaccess.c  delete
external/mpl/bind/dist/lib/isc/unix/ifiter_getifaddrs.c delete
external/mpl/bind/dist/lib/isc/unix/interfaceiter.c delete
external/mpl/bind/dist/lib/isc/unix/meminfo.c  delete
external/mpl/bind/dist/lib/isc/unix/net.c      delete
external/mpl/bind/dist/lib/isc/unix/os.c        delete
external/mpl/bind/dist/lib/isc/unix/pk11_api.c  delete
external/mpl/bind/dist/lib/isc/unix/resource.c  delete
external/mpl/bind/dist/lib/isc/unix/socket.c    delete
external/mpl/bind/dist/lib/isc/unix/socket_p.h  delete
external/mpl/bind/dist/lib/isc/unix/stdio.c    delete
external/mpl/bind/dist/lib/isc/unix/stdtime.c  delete
external/mpl/bind/dist/lib/isc/unix/syslog.c    delete
external/mpl/bind/dist/lib/isc/unix/time.c      delete
external/mpl/bind/dist/lib/isc/win32/include/isc/net.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/Makefile.in delete
external/mpl/bind/dist/lib/isc/win32/include/isc/align.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/bind_registry.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/bindevt.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/condition.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/dir.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/ipv6.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/mutex.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/netdb.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/ntgroups.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/ntpaths.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/offset.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/once.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/platform.h.in delete
external/mpl/bind/dist/lib/isc/win32/include/isc/stat.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/stdatomic.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/stdtime.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/syslog.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/thread.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/time.h delete
external/mpl/bind/dist/lib/isc/win32/include/isc/win32os.h delete
external/mpl/bind/dist/lib/isc/win32/include/Makefile.in delete
external/mpl/bind/dist/lib/isc/win32/.dir-locals.el delete
external/mpl/bind/dist/lib/isc/win32/DLLMain.c  delete
external/mpl/bind/dist/lib/isc/win32/Makefile.in delete
external/mpl/bind/dist/lib/isc/win32/condition.c delete
external/mpl/bind/dist/lib/isc/win32/dir.c      delete
external/mpl/bind/dist/lib/isc/win32/errno.c    delete
external/mpl/bind/dist/lib/isc/win32/errno2result.c delete
external/mpl/bind/dist/lib/isc/win32/errno2result.h delete
external/mpl/bind/dist/lib/isc/win32/file.c    delete
external/mpl/bind/dist/lib/isc/win32/fsaccess.c delete
external/mpl/bind/dist/lib/isc/win32/interfaceiter.c delete
external/mpl/bind/dist/lib/isc/win32/ipv6.c    delete
external/mpl/bind/dist/lib/isc/win32/libgen.h  delete
external/mpl/bind/dist/lib/isc/win32/libisc.def.exclude delete
external/mpl/bind/dist/lib/isc/win32/libisc.def.in delete
external/mpl/bind/dist/lib/isc/win32/libisc.vcxproj.filters.in delete
external/mpl/bind/dist/lib/isc/win32/libisc.vcxproj.in delete
external/mpl/bind/dist/lib/isc/win32/libisc.vcxproj.user delete
external/mpl/bind/dist/lib/isc/win32/meminfo.c  delete
external/mpl/bind/dist/lib/isc/win32/net.c      delete
external/mpl/bind/dist/lib/isc/win32/netdb.h    delete
external/mpl/bind/dist/lib/isc/win32/ntgroups.c delete
external/mpl/bind/dist/lib/isc/win32/ntpaths.c  delete
external/mpl/bind/dist/lib/isc/win32/once.c    delete
external/mpl/bind/dist/lib/isc/win32/os.c      delete
external/mpl/bind/dist/lib/isc/win32/pk11_api.c delete
external/mpl/bind/dist/lib/isc/win32/resource.c delete
external/mpl/bind/dist/lib/isc/win32/socket.c  delete
external/mpl/bind/dist/lib/isc/win32/stdio.c    delete
external/mpl/bind/dist/lib/isc/win32/stdtime.c  delete
external/mpl/bind/dist/lib/isc/win32/syslog.c  delete
external/mpl/bind/dist/lib/isc/win32/syslog.h  delete
external/mpl/bind/dist/lib/isc/win32/thread.c  delete
external/mpl/bind/dist/lib/isc/win32/time.c    delete
external/mpl/bind/dist/lib/isc/win32/unistd.h  delete
external/mpl/bind/dist/lib/isc/win32/version.c  delete
external/mpl/bind/dist/lib/isc/win32/win32os.c  delete
external/mpl/bind/dist/lib/isccc/include/isccc/Makefile.in delete
external/mpl/bind/dist/lib/isccc/include/isccc/result.h delete
external/mpl/bind/dist/lib/isccc/include/isccc/version.h delete
external/mpl/bind/dist/lib/isccc/include/Makefile.in delete
external/mpl/bind/dist/lib/isccc/Kyuafile      delete
external/mpl/bind/dist/lib/isccc/result.c      delete
external/mpl/bind/dist/lib/isccc/version.c      delete
external/mpl/bind/dist/lib/isccc/tests/Kyuafile delete
external/mpl/bind/dist/lib/isccc/tests/Makefile.in delete
external/mpl/bind/dist/lib/isccc/tests/result_test.c delete
external/mpl/bind/dist/lib/isccc/win32/DLLMain.c delete
external/mpl/bind/dist/lib/isccc/win32/libisccc.def delete
external/mpl/bind/dist/lib/isccc/win32/libisccc.vcxproj.filters.in delete
external/mpl/bind/dist/lib/isccc/win32/libisccc.vcxproj.in delete
external/mpl/bind/dist/lib/isccc/win32/libisccc.vcxproj.user delete
external/mpl/bind/dist/lib/isccc/win32/version.c delete
external/mpl/bind/dist/lib/isccfg/include/isccfg/Makefile.in delete
external/mpl/bind/dist/lib/isccfg/include/isccfg/dnsconf.h delete
external/mpl/bind/dist/lib/isccfg/include/isccfg/version.h delete
external/mpl/bind/dist/lib/isccfg/include/Makefile.in delete
external/mpl/bind/dist/lib/isccfg/Kyuafile      delete
external/mpl/bind/dist/lib/isccfg/version.c    delete
external/mpl/bind/dist/lib/isccfg/tests/duration_test.c delete
external/mpl/bind/dist/lib/isccfg/tests/Kyuafile delete
external/mpl/bind/dist/lib/isccfg/tests/Makefile.in delete
external/mpl/bind/dist/lib/isccfg/tests/parser_test.c delete
external/mpl/bind/dist/lib/isccfg/win32/DLLMain.c delete
external/mpl/bind/dist/lib/isccfg/win32/libisccfg.def delete
external/mpl/bind/dist/lib/isccfg/win32/libisccfg.vcxproj.filters.in delete
external/mpl/bind/dist/lib/isccfg/win32/libisccfg.vcxproj.in delete
external/mpl/bind/dist/lib/isccfg/win32/libisccfg.vcxproj.user delete
external/mpl/bind/dist/lib/isccfg/win32/version.c delete
external/mpl/bind/dist/lib/ns/include/ns/Makefile.in delete
external/mpl/bind/dist/lib/ns/include/ns/lib.h  delete
external/mpl/bind/dist/lib/ns/include/ns/version.h delete
external/mpl/bind/dist/lib/ns/include/Makefile.in delete
external/mpl/bind/dist/lib/ns/Kyuafile          delete
external/mpl/bind/dist/lib/ns/lib.c            delete
external/mpl/bind/dist/lib/ns/version.c        delete
external/mpl/bind/dist/lib/ns/tests/testdata/notify/notify1.msg delete
external/mpl/bind/dist/lib/ns/tests/testdata/notify/zone1.db delete
external/mpl/bind/dist/lib/ns/tests/testdata/query/foo.db delete
external/mpl/bind/dist/lib/ns/tests/Kyuafile    delete
external/mpl/bind/dist/lib/ns/tests/Makefile.in delete
external/mpl/bind/dist/lib/ns/tests/listenlist_test.c delete
external/mpl/bind/dist/lib/ns/tests/notify_test.c delete
external/mpl/bind/dist/lib/ns/tests/nstest.c    delete
external/mpl/bind/dist/lib/ns/tests/nstest.h    delete
external/mpl/bind/dist/lib/ns/tests/plugin_test.c delete
external/mpl/bind/dist/lib/ns/tests/query_test.c delete
external/mpl/bind/dist/lib/ns/win32/libns.def  delete
external/mpl/bind/dist/lib/ns/win32/DLLMain.c  delete
external/mpl/bind/dist/lib/ns/win32/libns.vcxproj.filters delete
external/mpl/bind/dist/lib/ns/win32/libns.vcxproj.in delete
external/mpl/bind/dist/lib/ns/win32/libns.vcxproj.user delete
external/mpl/bind/dist/lib/ns/win32/version.c  delete
external/mpl/bind/dist/lib/win32/bindevt/bindevt.c delete
external/mpl/bind/dist/lib/win32/bindevt/bindevt.mc delete
external/mpl/bind/dist/lib/win32/bindevt/bindevt.vcxproj.filters.in delete
external/mpl/bind/dist/lib/win32/bindevt/bindevt.vcxproj.in delete
external/mpl/bind/dist/lib/win32/bindevt/bindevt.vcxproj.user delete
external/mpl/bind/dist/m4/ax_check_preproc_flag.m4 delete
external/mpl/bind/dist/m4/compat.m4            delete
external/mpl/bind/dist/make/Makefile.in        delete
external/mpl/bind/dist/make/includes.in        delete
external/mpl/bind/dist/make/mkdep.in            delete
external/mpl/bind/dist/make/rules.in            delete
external/mpl/bind/dist/unit/README              delete
external/mpl/bind/dist/unit/gdb                delete
external/mpl/bind/dist/unit/unittest.sh.in      delete
external/mpl/bind/dist/util/mksymtbl.pl        delete
external/mpl/bind/dist/win32utils/Configure    delete
external/mpl/bind/dist/win32utils/GeoIP.diff    delete
external/mpl/bind/dist/win32utils/bind9.sln.in  delete
external/mpl/bind/dist/win32utils/build.txt    delete
external/mpl/bind/dist/win32utils/readme1st.txt delete
external/mpl/bind/dist/sonar-project.properties delete
external/mpl/bind/include/irs/netdb.h          delete
external/mpl/bind/include/irs/platform.h        delete
external/mpl/bind/include/isc/stdatomic.h      delete
external/mpl/bind/include/isc/atomic.h          delete
external/mpl/bind/include/isc/platform.h        delete
external/mpl/bind/Makefile.inc                  up to 1.13
external/mpl/bind/bin/check/Makefile.inc        up to 1.4
external/mpl/bind/bin/check/named-checkzone/Makefile up to 1.2
external/mpl/bind/bin/confgen/Makefile          up to 1.2
external/mpl/bind/bin/delv/Makefile            up to 1.3
external/mpl/bind/bin/dig/Makefile              up to 1.3
external/mpl/bind/bin/dnssec/Makefile          up to 1.2
external/mpl/bind/bin/dnssec/Makefile.inc      up to 1.3
external/mpl/bind/bin/dnssec/dnssec-dsfromkey/Makefile up to 1.2
external/mpl/bind/bin/host/Makefile            up to 1.3
external/mpl/bind/bin/named/Makefile            up to 1.6
external/mpl/bind/bin/nsupdate/Makefile        up to 1.3
external/mpl/bind/bin/rndc/Makefile            up to 1.3
external/mpl/bind/bin/tools/Makefile            up to 1.2
external/mpl/bind/bin/tools/Makefile.inc        up to 1.3
external/mpl/bind/bin/tools/arpaname/Makefile  up to 1.2
external/mpl/bind/bin/tools/named-journalprint/Makefile up to 1.2
external/mpl/bind/bin/tools/nsec3hash/Makefile  up to 1.2
external/mpl/bind/dist/CHANGES                  up to 1.1.1.16
external/mpl/bind/dist/CONTRIBUTING.md          up to 1.1.1.7
external/mpl/bind/dist/COPYRIGHT                up to 1.1.1.7
external/mpl/bind/dist/Makefile.in              up to 1.10
external/mpl/bind/dist/OPTIONS.md              up to 1.1.1.4
external/mpl/bind/dist/README.md                up to 1.1.1.11
external/mpl/bind/dist/aclocal.m4              up to 1.1.1.7
external/mpl/bind/dist/bind.keys                up to 1.1.1.5
external/mpl/bind/dist/config.guess            up to 1.4
external/mpl/bind/dist/config.h.in              up to 1.14
external/mpl/bind/dist/config.sub              up to 1.3
external/mpl/bind/dist/configure                up to 1.17
external/mpl/bind/dist/configure.ac            up to 1.1.1.15
external/mpl/bind/dist/install-sh              up to 1.1.1.3
external/mpl/bind/dist/ltmain.sh                up to 1.1.1.3
external/mpl/bind/dist/srcid                    up to 1.1.1.16
external/mpl/bind/dist/bin/Makefile.in          up to 1.1.1.4
external/mpl/bind/dist/bin/check/Makefile.in    up to 1.1.1.8
external/mpl/bind/dist/bin/check/check-tool.c  up to 1.10
external/mpl/bind/dist/bin/check/check-tool.h  up to 1.7
external/mpl/bind/dist/bin/check/named-checkconf.c up to 1.10
external/mpl/bind/dist/bin/check/named-checkconf.rst up to 1.1.1.4
external/mpl/bind/dist/bin/check/named-checkzone.c up to 1.10
external/mpl/bind/dist/bin/check/named-checkzone.rst up to 1.1.1.4
external/mpl/bind/dist/bin/check/named-compilezone.rst up to 1.1.1.2
external/mpl/bind/dist/bin/confgen/Makefile.in  up to 1.1.1.7
external/mpl/bind/dist/bin/confgen/ddns-confgen.rst up to 1.1.1.4
external/mpl/bind/dist/bin/confgen/keygen.c    up to 1.7
external/mpl/bind/dist/bin/confgen/keygen.h    up to 1.7
external/mpl/bind/dist/bin/confgen/rndc-confgen.c up to 1.7
external/mpl/bind/dist/bin/confgen/rndc-confgen.rst up to 1.1.1.4
external/mpl/bind/dist/bin/confgen/tsig-keygen.rst up to 1.1.1.2
external/mpl/bind/dist/bin/confgen/util.c      up to 1.7
external/mpl/bind/dist/bin/confgen/util.h      up to 1.7
external/mpl/bind/dist/bin/confgen/include/confgen/os.h up to 1.6
external/mpl/bind/dist/bin/delv/Makefile.in    up to 1.1.1.7
external/mpl/bind/dist/bin/delv/delv.c          up to 1.13
external/mpl/bind/dist/bin/delv/delv.rst        up to 1.1.1.4
external/mpl/bind/dist/bin/dig/Makefile.in      up to 1.1.1.7
external/mpl/bind/dist/bin/dig/dig.c            up to 1.10
external/mpl/bind/dist/bin/dig/dig.rst          up to 1.1.1.6
external/mpl/bind/dist/bin/dig/dighost.c        up to 1.16
external/mpl/bind/dist/bin/dig/host.c          up to 1.11
external/mpl/bind/dist/bin/dig/host.rst        up to 1.1.1.4
external/mpl/bind/dist/bin/dig/nslookup.c      up to 1.9
external/mpl/bind/dist/bin/dig/nslookup.rst    up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/Makefile.in  up to 1.1.1.7
external/mpl/bind/dist/bin/dnssec/dnssec-cds.c  up to 1.10
external/mpl/bind/dist/bin/dnssec/dnssec-cds.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.c up to 1.11
external/mpl/bind/dist/bin/dnssec/dnssec-dsfromkey.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-importkey.c up to 1.8
external/mpl/bind/dist/bin/dnssec/dnssec-importkey.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.c up to 1.9
external/mpl/bind/dist/bin/dnssec/dnssec-keyfromlabel.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-keygen.c up to 1.11
external/mpl/bind/dist/bin/dnssec/dnssec-keygen.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-revoke.c up to 1.9
external/mpl/bind/dist/bin/dnssec/dnssec-revoke.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-settime.c up to 1.8
external/mpl/bind/dist/bin/dnssec/dnssec-settime.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-signzone.c up to 1.11
external/mpl/bind/dist/bin/dnssec/dnssec-signzone.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssec-verify.c up to 1.7
external/mpl/bind/dist/bin/dnssec/dnssec-verify.rst up to 1.1.1.4
external/mpl/bind/dist/bin/dnssec/dnssectool.c  up to 1.9
external/mpl/bind/dist/bin/dnssec/dnssectool.h  up to 1.7
external/mpl/bind/dist/bin/named/Makefile.in    up to 1.1.1.9
external/mpl/bind/dist/bin/named/bind9.xsl      up to 1.1.1.9
external/mpl/bind/dist/bin/named/builtin.c      up to 1.7
external/mpl/bind/dist/bin/named/config.c      up to 1.15
external/mpl/bind/dist/bin/named/control.c      up to 1.9
external/mpl/bind/dist/bin/named/controlconf.c  up to 1.12
external/mpl/bind/dist/bin/named/geoip.c        up to 1.7
external/mpl/bind/dist/bin/named/log.c          up to 1.7
external/mpl/bind/dist/bin/named/logconf.c      up to 1.9
external/mpl/bind/dist/bin/named/main.c        up to 1.16
external/mpl/bind/dist/bin/named/named.conf.rst up to 1.1.1.7
external/mpl/bind/dist/bin/named/named.rst      up to 1.1.1.5
external/mpl/bind/dist/bin/named/server.c      up to 1.21
external/mpl/bind/dist/bin/named/statschannel.c up to 1.14
external/mpl/bind/dist/bin/named/tsigconf.c    up to 1.8
external/mpl/bind/dist/bin/named/zoneconf.c    up to 1.15
external/mpl/bind/dist/bin/named/include/dlz/dlz_dlopen_driver.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/builtin.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/config.h up to 1.8
external/mpl/bind/dist/bin/named/include/named/control.h up to 1.8
external/mpl/bind/dist/bin/named/include/named/fuzz.h up to 1.5
external/mpl/bind/dist/bin/named/include/named/globals.h up to 1.10
external/mpl/bind/dist/bin/named/include/named/log.h up to 1.7
external/mpl/bind/dist/bin/named/include/named/logconf.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/main.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/server.h up to 1.9
external/mpl/bind/dist/bin/named/include/named/smf_globals.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/statschannel.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/tkeyconf.h up to 1.7
external/mpl/bind/dist/bin/named/include/named/tsigconf.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/types.h up to 1.6
external/mpl/bind/dist/bin/named/include/named/zoneconf.h up to 1.7
external/mpl/bind/dist/bin/nsupdate/Makefile.in up to 1.1.1.7
external/mpl/bind/dist/bin/nsupdate/nsupdate.c  up to 1.14
external/mpl/bind/dist/bin/nsupdate/nsupdate.rst up to 1.1.1.5
external/mpl/bind/dist/bin/plugins/Makefile.in  up to 1.1.1.7
external/mpl/bind/dist/bin/plugins/filter-aaaa.c up to 1.10
external/mpl/bind/dist/bin/plugins/filter-aaaa.rst up to 1.1.1.4
external/mpl/bind/dist/bin/rndc/Makefile.in    up to 1.1.1.7
external/mpl/bind/dist/bin/rndc/rndc.c          up to 1.11
external/mpl/bind/dist/bin/rndc/rndc.conf.rst  up to 1.1.1.4
external/mpl/bind/dist/bin/rndc/rndc.rst        up to 1.1.1.6
external/mpl/bind/dist/bin/rndc/util.c          up to 1.7
external/mpl/bind/dist/bin/rndc/util.h          up to 1.7
external/mpl/bind/dist/bin/tests/Makefile.in    up to 1.1.1.7
external/mpl/bind/dist/bin/tests/wire_test.c    up to 1.9
external/mpl/bind/dist/bin/tests/system/Makefile.in up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/README  up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/ans.pl  up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/ckdnsrps.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/cleanall.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/conf.sh.common up to 1.1.1.12
external/mpl/bind/dist/bin/tests/system/conf.sh.in up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/conftest.py up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/feature-test.c up to 1.12
external/mpl/bind/dist/bin/tests/system/genzone.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/get_algorithms.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/kasp.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/org.isc.bind.system up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/parallel.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pytest_custom_markers.py up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/resolve.c up to 1.5
external/mpl/bind/dist/bin/tests/system/run.sh  up to 1.1.1.12
external/mpl/bind/dist/bin/tests/system/runall.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/runsequential.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/start.pl up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/stop.pl up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/stopall.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/testcrypto.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/testsock.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/testsummary.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/acl/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/acl/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/acl/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/acl/ns2/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/acl/ns2/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/acl/ns2/named4.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/acl/ns2/named5.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/acl/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/acl/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/additional/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/additional/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/additional/ns1/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/additional/ns1/named1.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/additional/ns1/named2.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/additional/ns1/named3.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/additional/ns1/named4.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/additional/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/addzone/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/addzone/tests_rndc_deadlock.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/addzone/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/ns2/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/ns2/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/addzone/ns3/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/allow-query/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/allow-query/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/allow-query/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named01.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named02.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named03.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named04.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named05.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named06.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named07.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named08.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named09.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named10.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named11.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named12.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named21.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named22.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named23.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named24.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named25.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named26.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named27.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named28.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named29.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named30.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named31.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named32.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named33.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named34.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named40.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named53.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named54.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named55.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named56.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns2/named57.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/allow-query/ns3/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/allow-query/ns3/named1.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/allow-query/ns3/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/allow-query/ns3/named3.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/allow-query/ns3/named4.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/auth/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/auth/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/auth/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/auth/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/autosign/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/autosign/tests.sh up to 1.1.1.14
external/mpl/bind/dist/bin/tests/system/autosign/ns1/keygen.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/autosign/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/autosign/ns2/keygen.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/autosign/ns2/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/autosign/ns3/keygen.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/autosign/ns3/named.conf.in up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/autosign/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/autosign/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/builtin/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/builtin/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/builtin/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/builtin/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/builtin/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/cacheclean/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cacheclean/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/cacheclean/ns1/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/cacheclean/ns2/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/cacheclean/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/case/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/case/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/case/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/case/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/catz/clean.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/catz/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/catz/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/catz/ns1/catalog.example.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/catz/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/catz/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/catz/ns2/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/catz/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/catz/ns4/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/cds/setup.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/cds/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/chain/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/chain/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/chain/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/chain/ans3/ans.pl up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/chain/ns2/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/chain/ns5/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/chain/ns7/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/altdb.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/altdlz.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-also-notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-dnssec.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-in-view-dup.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-define-default.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-define-insecure.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-define-none.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-key1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-key2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-key3.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp-key4.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp10.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp11.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp12.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp13.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp3.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp4.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp6.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp7.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp8.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-kasp9.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-master-request-ixfr.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-maxratio1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-maxratio2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-mirror-allow-recursion-none.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-noddns.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-options-also-notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-rpz-too-many-zones.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-rpz-ttl.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-rpz-update.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-sharedwritable1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-sharedwritable2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-sharedzone1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-sharedzone2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-sharedzone3.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-stub-masters-dialup.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy10.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy11.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy12.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy13.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy14.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy15.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy3.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy4.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy5.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy6.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy7.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy8.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-update-policy9.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/bad-view-also-notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-dup-records-fail.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-missing-zone.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-mx-cname-fail.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-mx-fail.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-names-fail.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/check-srv-cname-fail.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/checkconf/deprecated.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/checkconf/dlz-bad.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/dnssec.1 up to 1.5
external/mpl/bind/dist/bin/tests/system/checkconf/dnssec.2 up to 1.5
external/mpl/bind/dist/bin/tests/system/checkconf/dnssec.3 up to 1.5
external/mpl/bind/dist/bin/tests/system/checkconf/good-kasp.conf up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/checkconf/good-maxratio1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-maxratio2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-options-also-notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-response-dot.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-rpz-ttl.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-rpz-update.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy10.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy11.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy12.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy3.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy4.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy5.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy6.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy7.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy8.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-update-policy9.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good-view-also-notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/good.conf up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/checkconf/good.zonelist up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/checkconf/in-view-good.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/inline-bad.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/inline-good.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/inline-no.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-and-other-dnssec-options.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-keylen.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-nsec3-alg.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-nsec3-iter.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-bad-nsec3-salt.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/kasp-ignore-keylen.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/max-ttl.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/maxttl-bad.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/notify.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/range.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/tests.sh up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/checkconf/warn-keydir.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkconf/warn-maxratio1.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/checkds/tests_checkds.py up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/checkds/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns2/setup.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns2/template.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns4/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns5/setup.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns5/template.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns6/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns7/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns9/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/checkds/ns9/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/checknames/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/checknames/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/checkzone/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/checkzone/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/checkzone/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/cookie/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/cookie/prereq.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/cookie/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/cookie/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/cookie/ans9/ans.py up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/cookie/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns5/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns6/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/cookie/ns7/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/cookie/ns8/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/database/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/database/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/database/ns1/named1.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/database/ns1/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dialup/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dialup/ns1/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/dialup/ns2/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/dialup/ns3/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/digdelv/clean.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/digdelv/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/digdelv/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/digdelv/tests.sh up to 1.1.1.13
external/mpl/bind/dist/bin/tests/system/digdelv/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/digdelv/ns2/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/digdelv/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dlzexternal/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dlzexternal/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dlzexternal/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dlzexternal/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dns64/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dns64/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dns64/ns1/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dns64/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnssec/clean.sh up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/dnssec/prereq.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dnssec/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dnssec/tests.sh up to 1.1.1.13
external/mpl/bind/dist/bin/tests/system/dnssec/ns1/sign.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/dnssec/ns2/named.conf.in up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dnssec/ns2/sign.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/dnssec/ns3/named.conf.in up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dnssec/ns3/secure.example.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns3/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dnssec/ns4/named1.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnssec/ns4/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns4/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns4/named4.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnssec/ns4/named5.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns5/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns5/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns5/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dnssec/ns6/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnssec/ns6/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dnssec/ns6/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dnssec/ns7/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnssec/ns7/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dnssec/ns8/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnssec/ns9/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnstap/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dnstap/prereq.sh up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/dnstap/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dnstap/tests.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/dnstap/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnstap/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dnstap/ns3/named.args up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/dnstap/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dnstap/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dsdigest/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dsdigest/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dsdigest/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/dsdigest/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dsdigest/ns2/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/dsdigest/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dsdigest/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dupsigs/check_journal.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dupsigs/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dupsigs/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/named.args up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dupsigs/ns1/reset_keys.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dyndb/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/dyndb/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dyndb/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/dyndb/driver/Makefile.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/dyndb/driver/db.c up to 1.8
external/mpl/bind/dist/bin/tests/system/dyndb/driver/driver.c up to 1.8
external/mpl/bind/dist/bin/tests/system/dyndb/driver/instance.h up to 1.6
external/mpl/bind/dist/bin/tests/system/dyndb/driver/lock.h up to 1.4
external/mpl/bind/dist/bin/tests/system/dyndb/driver/log.h up to 1.5
external/mpl/bind/dist/bin/tests/system/dyndb/driver/syncptr.c up to 1.7
external/mpl/bind/dist/bin/tests/system/dyndb/driver/util.h up to 1.5
external/mpl/bind/dist/bin/tests/system/dyndb/driver/zone.c up to 1.6
external/mpl/bind/dist/bin/tests/system/dyndb/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/ecdsa/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/ecdsa/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/ecdsa/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/ecdsa/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/ecdsa/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/ecdsa/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/eddsa/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/eddsa/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/eddsa/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/eddsa/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/eddsa/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/eddsa/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/eddsa/ns2/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/eddsa/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/eddsa/ns3/sign.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/ednscompliance/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/ednscompliance/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/ednscompliance/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/emptyzones/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/emptyzones/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/emptyzones/ns1/named1.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/emptyzones/ns1/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/fetchlimit/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/fetchlimit/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/fetchlimit/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/fetchlimit/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/fetchlimit/ans4/ans.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns3/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/fetchlimit/ns3/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/filter-aaaa/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/bad1.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/bad2.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/bad3.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/bad4.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/bad5.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/good1.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/good2.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/good3.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/good4.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/conf/good5.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns1/named1.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns1/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns1/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns2/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns3/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns4/named1.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns4/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns4/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/filter-aaaa/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/formerr/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/formerr/formerr.pl up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/formerr/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/formerr/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/formerr/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/forward/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/forward/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/forward/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/forward/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/forward/ans11/ans.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/forward/ns1/sign.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/forward/ns10/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/forward/ns3/named1.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/forward/ns3/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/forward/ns9/named1.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/forward/ns9/named2.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/forward/ns9/named3.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/forward/ns9/named4.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/geoip2/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/geoip2/conf/bad-regiondb.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named10.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named11.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named12.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named4.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named5.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named6.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named7.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named8.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/geoip2/ns2/named9.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/glue/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/glue/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/glue/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/idna/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/idna/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/inline/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/inline/setup.sh up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/inline/tests.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/inline/ns1/root.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/inline/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/inline/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/inline/ns3/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/inline/ns3/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/inline/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/inline/ns5/named.conf.post up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/inline/ns5/named.conf.pre up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/inline/ns6/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/inline/ns7/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/inline/ns7/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/inline/ns8/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/inline/ns8/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/integrity/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/integrity/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/integrity/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/ixfr/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/ixfr/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/ixfr/tests.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/ixfr/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/ixfr/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/ixfr/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/ixfr/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/journal/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/journal/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/journal/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/journal/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/kasp/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/kasp/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/kasp/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/kasp/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/kasp/ns2/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/kasp/ns3/named-fips.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/kasp/ns3/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/kasp/ns4/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/kasp/ns4/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/kasp/ns5/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/kasp/ns5/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/kasp/ns6/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/kasp/ns6/named2.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/kasp/ns6/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/keepalive/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/keepalive/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/keepalive/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/keepalive/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/keepalive/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/clean.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/setup.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/kasp.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns3/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/keymgr2kasp/ns4/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/build.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/legacy/tests.sh up to 1.1.1.12
external/mpl/bind/dist/bin/tests/system/legacy/ns1/named1.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/legacy/ns1/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns1/trusted.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/legacy/ns4/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns5/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns6/edns512.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/legacy/ns6/edns512.db.signed up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/legacy/ns6/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns6/sign.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns7/edns512-notcp.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/legacy/ns7/edns512-notcp.db.signed up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/legacy/ns7/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns7/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/legacy/ns7/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/limits/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/limits/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/limits/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/logfileconfig/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/logfileconfig/named1.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/named2.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/logfileconfig/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.dirconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601-utc.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.iso8601.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.pipeconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plain.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.plainconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.symconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.tsconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.unlimited.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/logfileconfig/ns1/named.versconf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/masterfile/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/masterfile/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/masterfile/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/masterfile/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/masterformat/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/masterformat/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/masterformat/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/masterformat/ns1/compile.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/masterformat/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/masterformat/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/masterformat/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/metadata/clean.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/metadata/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/metadata/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/mirror/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mirror/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/mirror/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mirror/ns1/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mirror/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mirror/ns2/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/mirror/ns3/named.args up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mirror/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mkeys/setup.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/mkeys/tests.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named1.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named2.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mkeys/ns1/named3.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mkeys/ns1/sign.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/mkeys/ns2/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mkeys/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mkeys/ns3/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mkeys/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mkeys/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/mkeys/ns4/sign.sh up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/mkeys/ns5/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mkeys/ns5/named1.args up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mkeys/ns5/named2.args up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mkeys/ns6/named.args up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mkeys/ns6/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/mkeys/ns6/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/mkeys/ns7/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/names/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/names/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/names/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/notify/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/notify/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/notify/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/notify/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/notify/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/notify/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/notify/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/notify/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsec3/clean.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsec3/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsec3/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/nsec3/ns2/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/nsec3/ns3/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nsec3/ns3/named2.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nsec3/ns3/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nslookup/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nslookup/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nslookup/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nslookup/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsupdate/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nsupdate/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/nsupdate/tests.sh up to 1.1.1.13
external/mpl/bind/dist/bin/tests/system/nsupdate/ans4/ans.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsupdate/krb/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nsupdate/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/ns10/example.com.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/nsupdate/ns10/in-addr.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/nsupdate/ns10/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/ns3/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/nsupdate/ns3/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/nsupdate/ns5/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsupdate/ns6/named.args up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsupdate/ns6/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/nsupdate/ns7/example.com.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/nsupdate/ns7/in-addr.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/nsupdate/ns8/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nsupdate/ns9/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nzd2nzf/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nzd2nzf/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nzd2nzf/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/nzd2nzf/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/nzd2nzf/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/padding/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/padding/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/padding/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/padding/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/padding/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/padding/ns4/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/pending/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/pending/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/pending/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/pending/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/pending/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pending/ns2/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/pending/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pending/ns4/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/pipelined/pipequeries.c up to 1.8
external/mpl/bind/dist/bin/tests/system/pipelined/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pipelined/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/pipelined/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pipelined/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pipelined/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/pipelined/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/qmin/clean.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/qmin/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/qmin/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/qmin/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/qmin/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/qmin/ns6/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/qmin/ns7/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/reclimit/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/reclimit/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/reclimit/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/reclimit/ans7/ans.pl up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/reclimit/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/reclimit/ns3/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/reclimit/ns3/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/reclimit/ns3/named4.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/redirect/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/redirect/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/redirect/conf/good2.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/redirect/ns1/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/redirect/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/redirect/ns3/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/redirect/ns4/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/redirect/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/redirect/ns5/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/redirect/ns6/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/resolver/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/resolver/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/resolver/setup.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/resolver/tests.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/resolver/ans2/ans.pl up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/resolver/ans3/ans.pl up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/resolver/ans8/ans.pl up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/resolver/ns1/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/resolver/ns4/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/resolver/ns4/root.db up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/resolver/ns5/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/resolver/ns6/example.net.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/resolver/ns6/keygen.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/resolver/ns6/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/resolver/ns7/named1.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/resolver/ns7/named2.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rndc/gencheck.c up to 1.6
external/mpl/bind/dist/bin/tests/system/rndc/setup.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/rndc/tests.sh up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/rndc/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rndc/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rndc/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rndc/ns6/named.args up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rndc/ns6/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rndc/ns7/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rootkeysentinel/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rootkeysentinel/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rootkeysentinel/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rootkeysentinel/ns2/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rpz/clean.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/rpz/dnsrps.c up to 1.8
external/mpl/bind/dist/bin/tests/system/rpz/dnsrpzd-license.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rpz/dnsrpzd.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpz/qperf.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpz/setup.sh up to 1.1.1.10
external/mpl/bind/dist/bin/tests/system/rpz/tests.sh up to 1.1.1.12
external/mpl/bind/dist/bin/tests/system/rpz/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpz/ns10/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/rpz/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpz/ns3/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rpz/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpz/ns5/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpz/ns6/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rpz/ns7/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpz/ns8/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpz/ns9/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rpzrecurse/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpzrecurse/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpzrecurse/testgen.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.clientip2.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.conf.header.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.invalidprefixlength.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.log.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.max.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard1.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard2.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard3.conf up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns2/named.wildcard4.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns3/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rpzrecurse/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rrchecker/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rrl/broken.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/rrl/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rrl/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rrl/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rrl/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rrl/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rrsetorder/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rrsetorder/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rrsetorder/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rrsetorder/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rrsetorder/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rsabigexponent/bigkey.c up to 1.9
external/mpl/bind/dist/bin/tests/system/rsabigexponent/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/rsabigexponent/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns1/root.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns2/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/rsabigexponent/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/runtime/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/runtime/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named-alt4.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named-alt5.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named-alt6.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named-alt7.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named-alt9.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/runtime/ns2/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/serve-stale/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/serve-stale/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/serve-stale/tests.sh up to 1.1.1.14
external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named1.conf.in up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named2.conf.in up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/named3.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/serve-stale/ns1/root.db up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named1.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named2.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named3.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named4.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named5.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named6.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named7.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns3/named8.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/serve-stale/ns4/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/serve-stale/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/sfcache/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/sfcache/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/sfcache/ns1/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/sfcache/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/sfcache/ns2/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/sfcache/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/sfcache/ns5/sign.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/shutdown/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/shutdown/tests_shutdown.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/shutdown/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/shutdown/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/shutdown/resolver/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/smartsign/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/sortlist/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/sortlist/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/sortlist/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/spf/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/spf/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/spf/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/staticstub/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/staticstub/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/staticstub/conf/bad09.conf up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/staticstub/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/staticstub/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/staticstub/ns3/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/staticstub/ns4/sign.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/statistics/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/statistics/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statistics/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statistics/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/statistics/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statistics/ns2/named2.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/statistics/ns3/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/statistics/ns3/root.hint up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/statschannel/clean.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/statschannel/conftest.py up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/statschannel/fetch.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/statschannel/generic.py up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statschannel/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statschannel/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/statschannel/tests.sh up to 1.1.1.12
external/mpl/bind/dist/bin/tests/system/statschannel/tests_json.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/statschannel/tests_xml.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/statschannel/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/statschannel/ns2/named.conf.in up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/statschannel/ns2/named2.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/statschannel/ns2/sign.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/statschannel/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/stress/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/stress/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/stress/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/stress/ns2/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/stress/ns3/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/stress/ns4/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/stub/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/stub/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/stub/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/stub/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/stub/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/stub/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/dnamed.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/example.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/root.db.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns1/sign.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns4/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/synthfromdnssec/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/tcp/clean.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/tcp/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tcp/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/tcp/tests_tcp.py up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tcp/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/tcp/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/tcp/ns3/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tcp/ns4/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tcp/ns5/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tcp/ns7/named.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/timeouts/prereq.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/timeouts/setup.sh up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/timeouts/tests_tcp_timeouts.py up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/timeouts/ns1/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/timeouts/ns1/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tkey/clean.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tkey/keycreate.c up to 1.8
external/mpl/bind/dist/bin/tests/system/tkey/keydelete.c up to 1.8
external/mpl/bind/dist/bin/tests/system/tkey/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/tkey/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tkey/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tkey/ns1/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/tools/setup.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/tools/tests.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/tsig/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/tsig/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/tsig/ns1/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tsiggss/authsock.pl up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tsiggss/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tsiggss/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/tsiggss/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/tsiggss/ns1/example.nil.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/tsiggss/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/ttl/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/ttl/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/ttl/ns2/named.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/unknown/setup.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/unknown/tests.sh up to 1.1.1.7
external/mpl/bind/dist/bin/tests/system/unknown/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/unknown/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/unknown/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/unknown/ns3/sign.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/upforwd/clean.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/upforwd/prereq.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/upforwd/setup.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/upforwd/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/upforwd/ans4/ans.pl up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/upforwd/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/upforwd/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/upforwd/ns3/named1.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/upforwd/ns3/named2.conf.in up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/verify/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/verify/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/verify/zones/genzones.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/views/setup.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/views/tests.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/views/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/views/ns2/named1.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/views/ns2/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/views/ns2/named3.conf.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/views/ns3/named1.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/views/ns3/named2.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/views/ns5/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/wildcard/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/wildcard/tests.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/wildcard/ns1/example.db.in up to 1.1.1.3
external/mpl/bind/dist/bin/tests/system/wildcard/ns1/sign.sh up to 1.1.1.9
external/mpl/bind/dist/bin/tests/system/wildcard/ns2/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/wildcard/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/wildcard/ns5/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/xfer/clean.sh up to 1.1.1.8
external/mpl/bind/dist/bin/tests/system/xfer/prereq.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/xfer/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/xfer/tests.sh up to 1.1.1.11
external/mpl/bind/dist/bin/tests/system/xfer/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xfer/ns3/named.conf.in up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/xfer/ns4/named.conf.base up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xfer/ns6/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xfer/ns7/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xfer/ns8/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xferquota/setup.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/xferquota/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/xferquota/ns1/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/xferquota/ns2/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/zero/prereq.sh up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/zero/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/zero/tests.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/zero/ns2/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/zero/ns3/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/zero/ns3/named.conf.in up to 1.1.1.4
external/mpl/bind/dist/bin/tests/system/zero/ns4/named.args up to 1.1.1.2
external/mpl/bind/dist/bin/tests/system/zonechecks/setup.sh up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/zonechecks/tests.sh up to 1.1.1.5
external/mpl/bind/dist/bin/tests/system/zonechecks/ns1/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tests/system/zonechecks/ns2/named.conf.in up to 1.1.1.6
external/mpl/bind/dist/bin/tools/Makefile.in    up to 1.1.1.9
external/mpl/bind/dist/bin/tools/arpaname.rst  up to 1.1.1.4
external/mpl/bind/dist/bin/tools/dnstap-read.c  up to 1.9
external/mpl/bind/dist/bin/tools/dnstap-read.rst up to 1.1.1.4
external/mpl/bind/dist/bin/tools/mdig.c        up to 1.12
external/mpl/bind/dist/bin/tools/mdig.rst      up to 1.1.1.4
external/mpl/bind/dist/bin/tools/named-journalprint.c up to 1.8
external/mpl/bind/dist/bin/tools/named-journalprint.rst up to 1.1.1.6
external/mpl/bind/dist/bin/tools/named-nzd2nzf.c up to 1.9
external/mpl/bind/dist/bin/tools/named-nzd2nzf.rst up to 1.1.1.4
external/mpl/bind/dist/bin/tools/named-rrchecker.c up to 1.7
external/mpl/bind/dist/bin/tools/named-rrchecker.rst up to 1.1.1.4
external/mpl/bind/dist/bin/tools/nsec3hash.c    up to 1.7
external/mpl/bind/dist/bin/tools/nsec3hash.rst  up to 1.1.1.4
external/mpl/bind/dist/contrib/README          up to 1.1.1.5
external/mpl/bind/dist/contrib/dlz/example/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/example/README up to 1.1.1.5
external/mpl/bind/dist/contrib/dlz/example/dlz_example.c up to 1.7
external/mpl/bind/dist/contrib/dlz/modules/bdbhpt/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/modules/bdbhpt/testing/bdbhpt-populate.pl up to 1.1.1.4
external/mpl/bind/dist/contrib/dlz/modules/common/dlz_dbi.c up to 1.9
external/mpl/bind/dist/contrib/dlz/modules/filesystem/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/modules/filesystem/dir.h up to 1.5
external/mpl/bind/dist/contrib/dlz/modules/include/dlz_dbi.h up to 1.6
external/mpl/bind/dist/contrib/dlz/modules/include/dlz_list.h up to 1.7
external/mpl/bind/dist/contrib/dlz/modules/include/dlz_minimal.h up to 1.6
external/mpl/bind/dist/contrib/dlz/modules/include/dlz_pthread.h up to 1.5
external/mpl/bind/dist/contrib/dlz/modules/ldap/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/modules/ldap/dlz_ldap_dynamic.c up to 1.7
external/mpl/bind/dist/contrib/dlz/modules/ldap/testing/slapd.conf up to 1.1.1.2
external/mpl/bind/dist/contrib/dlz/modules/mysql/dlz_mysql_dynamic.c up to 1.6
external/mpl/bind/dist/contrib/dlz/modules/mysqldyn/README up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/modules/perl/dlz_perl_driver.h up to 1.4
external/mpl/bind/dist/contrib/dlz/modules/sqlite3/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/dlz/modules/sqlite3/dlz_sqlite3_dynamic.c up to 1.7
external/mpl/bind/dist/contrib/dlz/modules/wildcard/Makefile up to 1.1.1.3
external/mpl/bind/dist/contrib/scripts/catzhash.py up to 1.1.1.3
external/mpl/bind/dist/contrib/scripts/check-secure-delegation.pl.in up to 1.1.1.4
external/mpl/bind/dist/contrib/scripts/nanny.pl up to 1.1.1.4
external/mpl/bind/dist/contrib/scripts/zone-edit.sh.in up to 1.1.1.4
external/mpl/bind/dist/doc/Makefile.in          up to 1.1.1.5
external/mpl/bind/dist/doc/arm/Makefile.in      up to 1.1.1.8
external/mpl/bind/dist/doc/arm/conf.py          up to 1.1.1.6
external/mpl/bind/dist/doc/arm/dnssec-guide.rst up to 1.1.1.3
external/mpl/bind/dist/doc/arm/dnssec.inc.rst  up to 1.1.1.3
external/mpl/bind/dist/doc/arm/general.rst      up to 1.1.1.5
external/mpl/bind/dist/doc/arm/index.rst        up to 1.1.1.4
external/mpl/bind/dist/doc/arm/manpages.rst    up to 1.1.1.4
external/mpl/bind/dist/doc/arm/notes.rst        up to 1.1.1.8
external/mpl/bind/dist/doc/arm/reference.rst    up to 1.1.1.8
external/mpl/bind/dist/doc/arm/requirements.txt up to 1.1.1.4
external/mpl/bind/dist/doc/dnssec-guide/advanced-discussions.rst up to 1.1.1.3
external/mpl/bind/dist/doc/dnssec-guide/commonly-asked-questions.rst up to 1.1.1.3
external/mpl/bind/dist/doc/dnssec-guide/getting-started.rst up to 1.1.1.3
external/mpl/bind/dist/doc/dnssec-guide/introduction.rst up to 1.1.1.4
external/mpl/bind/dist/doc/dnssec-guide/preface.rst up to 1.1.1.3
external/mpl/bind/dist/doc/dnssec-guide/recipes.rst up to 1.1.1.5
external/mpl/bind/dist/doc/dnssec-guide/signing.rst up to 1.1.1.6
external/mpl/bind/dist/doc/dnssec-guide/troubleshooting.rst up to 1.1.1.3
external/mpl/bind/dist/doc/dnssec-guide/validation.rst up to 1.1.1.4
external/mpl/bind/dist/doc/man/Makefile.in      up to 1.1.1.5
external/mpl/bind/dist/doc/man/arpaname.1in    up to 1.1.1.5
external/mpl/bind/dist/doc/man/conf.py          up to 1.1.1.6
external/mpl/bind/dist/doc/man/ddns-confgen.8in up to 1.1.1.6
external/mpl/bind/dist/doc/man/delv.1in        up to 1.1.1.6
external/mpl/bind/dist/doc/man/dig.1in          up to 1.1.1.7
external/mpl/bind/dist/doc/man/dnstap-read.1in  up to 1.1.1.5
external/mpl/bind/dist/doc/man/filter-aaaa.8in  up to 1.1.1.6
external/mpl/bind/dist/doc/man/host.1in        up to 1.1.1.6
external/mpl/bind/dist/doc/man/mdig.1in        up to 1.1.1.6
external/mpl/bind/dist/doc/man/named-rrchecker.1in up to 1.1.1.5
external/mpl/bind/dist/doc/man/named.8in        up to 1.1.1.5
external/mpl/bind/dist/doc/man/named.conf.5in  up to 1.1.1.7
external/mpl/bind/dist/doc/man/nslookup.1in    up to 1.1.1.5
external/mpl/bind/dist/doc/man/nsupdate.1in    up to 1.1.1.5
external/mpl/bind/dist/doc/man/rndc-confgen.8in up to 1.1.1.5
external/mpl/bind/dist/doc/man/rndc.8in        up to 1.1.1.7
external/mpl/bind/dist/doc/man/rndc.conf.5in    up to 1.1.1.6
external/mpl/bind/dist/doc/man/tsig-keygen.8in  up to 1.1.1.4
external/mpl/bind/dist/doc/misc/Makefile.in    up to 1.1.1.8
external/mpl/bind/dist/doc/misc/forward.zoneopt up to 1.1.1.2
external/mpl/bind/dist/doc/misc/hint.zoneopt    up to 1.1.1.2
external/mpl/bind/dist/doc/misc/mirror.zoneopt  up to 1.1.1.4
external/mpl/bind/dist/doc/misc/options        up to 1.1.1.13
external/mpl/bind/dist/doc/misc/redirect.zoneopt up to 1.1.1.5
external/mpl/bind/dist/doc/misc/static-stub.zoneopt up to 1.1.1.3
external/mpl/bind/dist/doc/misc/stub.zoneopt    up to 1.1.1.4
external/mpl/bind/dist/doc/notes/notes-known-issues.rst up to 1.1.1.2
external/mpl/bind/dist/fuzz/Makefile.in        up to 1.1.1.6
external/mpl/bind/dist/fuzz/dns_name_fromtext_target.c up to 1.6
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.c up to 1.7
external/mpl/bind/dist/fuzz/fuzz.h              up to 1.7
external/mpl/bind/dist/fuzz/main.c              up to 1.6
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/cdnskey up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-101 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-102 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-103 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-108 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-12 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-123 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-128 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-130 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-134 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-143 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-15 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-16 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-22 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-23 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-24 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-25 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-26 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-27 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-33 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-34 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-35 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-36 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-47 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-49 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-5 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-50 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-51 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-53 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-57 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-6 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-7 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-72 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-77 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-8 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-81 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-83 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-84 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-85 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-87 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-89 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/input-96 up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/smimea up to 1.1.1.2
external/mpl/bind/dist/fuzz/dns_rdata_fromwire_text.in/sshfp up to 1.1.1.2
external/mpl/bind/dist/lib/Makefile.in          up to 1.1.1.4
external/mpl/bind/dist/lib/bind9/Makefile.in    up to 1.1.1.9
external/mpl/bind/dist/lib/bind9/check.c        up to 1.16
external/mpl/bind/dist/lib/bind9/include/bind9/check.h up to 1.7
external/mpl/bind/dist/lib/bind9/include/bind9/getaddresses.h up to 1.6
external/mpl/bind/dist/lib/dns/Makefile.in      up to 1.1.1.11
external/mpl/bind/dist/lib/dns/acl.c            up to 1.9
external/mpl/bind/dist/lib/dns/adb.c            up to 1.11
external/mpl/bind/dist/lib/dns/badcache.c      up to 1.8
external/mpl/bind/dist/lib/dns/byaddr.c        up to 1.9
external/mpl/bind/dist/lib/dns/cache.c          up to 1.11
external/mpl/bind/dist/lib/dns/catz.c          up to 1.12
external/mpl/bind/dist/lib/dns/client.c        up to 1.13
external/mpl/bind/dist/lib/dns/clientinfo.c    up to 1.7
external/mpl/bind/dist/lib/dns/compress.c      up to 1.9
external/mpl/bind/dist/lib/dns/db.c            up to 1.10
external/mpl/bind/dist/lib/dns/diff.c          up to 1.9
external/mpl/bind/dist/lib/dns/dispatch.c      up to 1.10
external/mpl/bind/dist/lib/dns/dlz.c            up to 1.8
external/mpl/bind/dist/lib/dns/dns64.c          up to 1.7
external/mpl/bind/dist/lib/dns/dnsrps.c        up to 1.11
external/mpl/bind/dist/lib/dns/dnssec.c        up to 1.14
external/mpl/bind/dist/lib/dns/dnstap.c        up to 1.13
external/mpl/bind/dist/lib/dns/ds.c            up to 1.9
external/mpl/bind/dist/lib/dns/dst_api.c        up to 1.15
external/mpl/bind/dist/lib/dns/dst_internal.h  up to 1.9
external/mpl/bind/dist/lib/dns/dst_openssl.h    up to 1.6
external/mpl/bind/dist/lib/dns/dst_parse.c      up to 1.11
external/mpl/bind/dist/lib/dns/dst_parse.h      up to 1.8
external/mpl/bind/dist/lib/dns/dyndb.c          up to 1.11
external/mpl/bind/dist/lib/dns/forward.c        up to 1.9
external/mpl/bind/dist/lib/dns/gen.c            up to 1.12
external/mpl/bind/dist/lib/dns/geoip2.c        up to 1.7
external/mpl/bind/dist/lib/dns/gssapi_link.c    up to 1.10
external/mpl/bind/dist/lib/dns/gssapictx.c      up to 1.10
external/mpl/bind/dist/lib/dns/hmac_link.c      up to 1.9
external/mpl/bind/dist/lib/dns/ipkeylist.c      up to 1.7
external/mpl/bind/dist/lib/dns/journal.c        up to 1.12
external/mpl/bind/dist/lib/dns/kasp.c          up to 1.6
external/mpl/bind/dist/lib/dns/keymgr.c        up to 1.11
external/mpl/bind/dist/lib/dns/keytable.c      up to 1.10
external/mpl/bind/dist/lib/dns/log.c            up to 1.7
external/mpl/bind/dist/lib/dns/lookup.c        up to 1.8
external/mpl/bind/dist/lib/dns/master.c        up to 1.12
external/mpl/bind/dist/lib/dns/masterdump.c    up to 1.14
external/mpl/bind/dist/lib/dns/message.c        up to 1.17
external/mpl/bind/dist/lib/dns/name.c          up to 1.14
external/mpl/bind/dist/lib/dns/ncache.c        up to 1.9
external/mpl/bind/dist/lib/dns/nsec.c          up to 1.10
external/mpl/bind/dist/lib/dns/nsec3.c          up to 1.13
external/mpl/bind/dist/lib/dns/nta.c            up to 1.10
external/mpl/bind/dist/lib/dns/openssl_link.c  up to 1.10
external/mpl/bind/dist/lib/dns/openssldh_link.c up to 1.10
external/mpl/bind/dist/lib/dns/opensslecdsa_link.c up to 1.8
external/mpl/bind/dist/lib/dns/openssleddsa_link.c up to 1.9
external/mpl/bind/dist/lib/dns/opensslrsa_link.c up to 1.11
external/mpl/bind/dist/lib/dns/order.c          up to 1.9
external/mpl/bind/dist/lib/dns/peer.c          up to 1.11
external/mpl/bind/dist/lib/dns/private.c        up to 1.9
external/mpl/bind/dist/lib/dns/rbt.c            up to 1.15
external/mpl/bind/dist/lib/dns/rbtdb.c          up to 1.19
external/mpl/bind/dist/lib/dns/rbtdb.h          up to 1.6
external/mpl/bind/dist/lib/dns/rcode.c          up to 1.13
external/mpl/bind/dist/lib/dns/rdata.c          up to 1.14
external/mpl/bind/dist/lib/dns/rdatalist_p.h    up to 1.6
external/mpl/bind/dist/lib/dns/rdataset.c      up to 1.8
external/mpl/bind/dist/lib/dns/rdataslab.c      up to 1.8
external/mpl/bind/dist/lib/dns/request.c        up to 1.9
external/mpl/bind/dist/lib/dns/resolver.c      up to 1.19
external/mpl/bind/dist/lib/dns/result.c        up to 1.9
external/mpl/bind/dist/lib/dns/rootns.c        up to 1.8
external/mpl/bind/dist/lib/dns/rpz.c            up to 1.15
external/mpl/bind/dist/lib/dns/rriterator.c    up to 1.8
external/mpl/bind/dist/lib/dns/rrl.c            up to 1.9
external/mpl/bind/dist/lib/dns/sdb.c            up to 1.12
external/mpl/bind/dist/lib/dns/sdlz.c          up to 1.12
external/mpl/bind/dist/lib/dns/ssu.c            up to 1.8
external/mpl/bind/dist/lib/dns/ssu_external.c  up to 1.7
external/mpl/bind/dist/lib/dns/stats.c          up to 1.9
external/mpl/bind/dist/lib/dns/time.c          up to 1.8
external/mpl/bind/dist/lib/dns/tkey.c          up to 1.14
external/mpl/bind/dist/lib/dns/tsec.c          up to 1.7
external/mpl/bind/dist/lib/dns/tsig.c          up to 1.13
external/mpl/bind/dist/lib/dns/tsig_p.h        up to 1.7
external/mpl/bind/dist/lib/dns/ttl.c            up to 1.10
external/mpl/bind/dist/lib/dns/update.c        up to 1.13
external/mpl/bind/dist/lib/dns/validator.c      up to 1.15
external/mpl/bind/dist/lib/dns/view.c          up to 1.15
external/mpl/bind/dist/lib/dns/xfrin.c          up to 1.14
external/mpl/bind/dist/lib/dns/zone.c          up to 1.19
external/mpl/bind/dist/lib/dns/zone_p.h        up to 1.7
external/mpl/bind/dist/lib/dns/zoneverify.c    up to 1.11
external/mpl/bind/dist/lib/dns/zt.c            up to 1.10
external/mpl/bind/dist/lib/dns/include/dns/acl.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/adb.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/badcache.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/bit.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/byaddr.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/cache.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/callbacks.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/catz.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/cert.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/client.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/clientinfo.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/compress.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/db.h up to 1.10
external/mpl/bind/dist/lib/dns/include/dns/dbiterator.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/diff.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dispatch.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dlz.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dlz_dlopen.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dns64.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dnsrps.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/dnssec.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/dnstap.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/ds.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/dsdigest.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/dyndb.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/ecs.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/edns.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/events.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/fixedname.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/forward.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/geoip.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/ipkeylist.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/iptable.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/journal.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/kasp.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/keydata.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/keyflags.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/keymgr.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/keytable.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/keyvalues.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/librpz.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/log.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/lookup.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/master.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/masterdump.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/message.h up to 1.13
external/mpl/bind/dist/lib/dns/include/dns/name.h up to 1.11
external/mpl/bind/dist/lib/dns/include/dns/ncache.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/nsec.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/nsec3.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/nta.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/opcode.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/order.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/peer.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/private.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/rbt.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/rcode.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/rdata.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/rdataclass.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/rdatalist.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/rdataset.h up to 1.11
external/mpl/bind/dist/lib/dns/include/dns/rdatasetiter.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/rdataslab.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/rdatatype.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/request.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/resolver.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/result.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/rootns.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/rpz.h up to 1.10
external/mpl/bind/dist/lib/dns/include/dns/rriterator.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/rrl.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/sdb.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/sdlz.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/secalg.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/secproto.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/soa.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/ssu.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/stats.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/time.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/tkey.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/tsec.h up to 1.6
external/mpl/bind/dist/lib/dns/include/dns/tsig.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/ttl.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/types.h up to 1.8
external/mpl/bind/dist/lib/dns/include/dns/update.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/validator.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dns/view.h up to 1.10
external/mpl/bind/dist/lib/dns/include/dns/xfrin.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/zone.h up to 1.11
external/mpl/bind/dist/lib/dns/include/dns/zonekey.h up to 1.7
external/mpl/bind/dist/lib/dns/include/dns/zt.h up to 1.9
external/mpl/bind/dist/lib/dns/include/dst/dst.h up to 1.11
external/mpl/bind/dist/lib/dns/include/dst/gssapi.h up to 1.8
external/mpl/bind/dist/lib/dns/rdata/rdatastructpre.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/rdatastructsuf.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/any_255/tsig_250.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/any_255/tsig_250.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/ch_3/a_1.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/ch_3/a_1.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/afsdb_18.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/afsdb_18.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/amtrelay_260.c up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/amtrelay_260.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/avc_258.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/avc_258.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/caa_257.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/caa_257.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/cdnskey_60.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/cdnskey_60.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/cds_59.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/cds_59.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/cert_37.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/cert_37.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/cname_5.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/cname_5.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/csync_62.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/csync_62.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/dlv_32769.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/dlv_32769.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/dname_39.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/dname_39.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/dnskey_48.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/dnskey_48.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/doa_259.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/doa_259.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/ds_43.c up to 1.11
external/mpl/bind/dist/lib/dns/rdata/generic/ds_43.h up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/eui48_108.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/eui48_108.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/eui64_109.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/eui64_109.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/gpos_27.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/gpos_27.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/hinfo_13.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/hinfo_13.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/hip_55.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/hip_55.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/ipseckey_45.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/ipseckey_45.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/isdn_20.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/isdn_20.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.12
external/mpl/bind/dist/lib/dns/rdata/generic/key_25.h up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/keydata_65533.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/keydata_65533.h up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/l32_105.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/l32_105.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/l64_106.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/l64_106.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/loc_29.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/loc_29.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/lp_107.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/lp_107.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/mb_7.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/mb_7.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/md_3.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/md_3.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/mf_4.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/mf_4.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/mg_8.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/mg_8.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/minfo_14.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/minfo_14.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/mr_9.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/mr_9.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/mx_15.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/mx_15.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/naptr_35.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/naptr_35.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/nid_104.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/nid_104.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/ninfo_56.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/ninfo_56.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/ns_2.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/ns_2.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/nsec3_50.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/nsec3_50.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/nsec_47.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/nsec_47.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/null_10.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/null_10.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/nxt_30.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/nxt_30.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/openpgpkey_61.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/openpgpkey_61.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/opt_41.c up to 1.11
external/mpl/bind/dist/lib/dns/rdata/generic/opt_41.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/proforma.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/proforma.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/ptr_12.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/ptr_12.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/rkey_57.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/rkey_57.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/rp_17.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/rp_17.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/rrsig_46.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/rrsig_46.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/rt_21.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/rt_21.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/sig_24.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/sig_24.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/sink_40.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/sink_40.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/smimea_53.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/smimea_53.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/soa_6.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/soa_6.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/spf_99.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/spf_99.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/sshfp_44.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/sshfp_44.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/ta_32768.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/ta_32768.h up to 1.5
external/mpl/bind/dist/lib/dns/rdata/generic/talink_58.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/talink_58.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/tkey_249.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/tkey_249.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/tlsa_52.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/tlsa_52.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/generic/txt_16.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/uri_256.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/generic/uri_256.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/x25_19.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/generic/x25_19.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/generic/zonemd_63.c up to 1.6
external/mpl/bind/dist/lib/dns/rdata/generic/zonemd_63.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/hs_4/a_1.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/hs_4/a_1.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/a6_38.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/in_1/a6_38.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/a_1.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/in_1/a_1.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/aaaa_28.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/in_1/aaaa_28.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/apl_42.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/in_1/apl_42.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/atma_34.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/atma_34.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/dhcid_49.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/in_1/dhcid_49.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/eid_31.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/in_1/eid_31.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/https_65.c up to 1.3
external/mpl/bind/dist/lib/dns/rdata/in_1/https_65.h up to 1.3
external/mpl/bind/dist/lib/dns/rdata/in_1/kx_36.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/kx_36.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/nimloc_32.c up to 1.9
external/mpl/bind/dist/lib/dns/rdata/in_1/nimloc_32.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.h up to 1.6
external/mpl/bind/dist/lib/dns/rdata/in_1/nsap_22.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/nsap_22.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/px_26.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/px_26.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/srv_33.c up to 1.8
external/mpl/bind/dist/lib/dns/rdata/in_1/srv_33.h up to 1.7
external/mpl/bind/dist/lib/dns/rdata/in_1/svcb_64.c up to 1.4
external/mpl/bind/dist/lib/dns/rdata/in_1/svcb_64.h up to 1.3
external/mpl/bind/dist/lib/dns/rdata/in_1/wks_11.c up to 1.10
external/mpl/bind/dist/lib/dns/rdata/in_1/wks_11.h up to 1.7
external/mpl/bind/dist/lib/irs/Makefile.in      up to 1.1.1.7
external/mpl/bind/dist/lib/irs/resconf.c        up to 1.8
external/mpl/bind/dist/lib/irs/include/irs/resconf.h up to 1.6
external/mpl/bind/dist/lib/isc/Makefile.in      up to 1.1.1.11
external/mpl/bind/dist/lib/isc/aes.c            up to 1.7
external/mpl/bind/dist/lib/isc/app.c            up to 1.9
external/mpl/bind/dist/lib/isc/assertions.c    up to 1.8
external/mpl/bind/dist/lib/isc/backtrace.c      up to 1.7
external/mpl/bind/dist/lib/isc/buffer.c        up to 1.9
external/mpl/bind/dist/lib/isc/commandline.c    up to 1.8
external/mpl/bind/dist/lib/isc/entropy.c        up to 1.7
external/mpl/bind/dist/lib/isc/error.c          up to 1.7
external/mpl/bind/dist/lib/isc/hash.c          up to 1.8
external/mpl/bind/dist/lib/isc/hmac.c          up to 1.6
external/mpl/bind/dist/lib/isc/ht.c            up to 1.10
external/mpl/bind/dist/lib/isc/httpd.c          up to 1.9
external/mpl/bind/dist/lib/isc/iterated_hash.c  up to 1.8
external/mpl/bind/dist/lib/isc/lex.c            up to 1.11
external/mpl/bind/dist/lib/isc/lib.c            up to 1.11
external/mpl/bind/dist/lib/isc/log.c            up to 1.10
external/mpl/bind/dist/lib/isc/managers.c      up to 1.4
external/mpl/bind/dist/lib/isc/md.c            up to 1.6
external/mpl/bind/dist/lib/isc/mem.c            up to 1.15
external/mpl/bind/dist/lib/isc/mem_p.h          up to 1.6
external/mpl/bind/dist/lib/isc/netaddr.c        up to 1.9
external/mpl/bind/dist/lib/isc/openssl_shim.c  up to 1.7
external/mpl/bind/dist/lib/isc/openssl_shim.h  up to 1.7
external/mpl/bind/dist/lib/isc/quota.c          up to 1.9
external/mpl/bind/dist/lib/isc/radix.c          up to 1.9
external/mpl/bind/dist/lib/isc/random.c        up to 1.7
external/mpl/bind/dist/lib/isc/ratelimiter.c    up to 1.9
external/mpl/bind/dist/lib/isc/result.c        up to 1.11
external/mpl/bind/dist/lib/isc/rwlock.c        up to 1.14
external/mpl/bind/dist/lib/isc/sockaddr.c      up to 1.11
external/mpl/bind/dist/lib/isc/stats.c          up to 1.11
external/mpl/bind/dist/lib/isc/string.c        up to 1.8
external/mpl/bind/dist/lib/isc/task.c          up to 1.19
external/mpl/bind/dist/lib/isc/timer.c          up to 1.13
external/mpl/bind/dist/lib/isc/timer_p.h        up to 1.5
external/mpl/bind/dist/lib/isc/tls.c            up to 1.4
external/mpl/bind/dist/lib/isc/trampoline.c    up to 1.3
external/mpl/bind/dist/lib/isc/trampoline_p.h  up to 1.4
external/mpl/bind/dist/lib/isc/url.c            up to 1.5
external/mpl/bind/dist/lib/isc/include/isc/aes.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/app.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/assertions.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/atomic.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/backtrace.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/barrier.h up to 1.4
external/mpl/bind/dist/lib/isc/include/isc/base32.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/base64.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/buffer.h up to 1.9
external/mpl/bind/dist/lib/isc/include/isc/commandline.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/counter.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/crc64.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/deprecated.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/endian.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/errno.h up to 1.5
external/mpl/bind/dist/lib/isc/include/isc/error.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/event.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/eventclass.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/file.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/formatcheck.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/fuzz.h up to 1.5
external/mpl/bind/dist/lib/isc/include/isc/hash.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/heap.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/hex.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/hmac.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/ht.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/httpd.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/interfaceiter.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/lang.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/lex.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/log.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/magic.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/managers.h up to 1.4
external/mpl/bind/dist/lib/isc/include/isc/md.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/mem.h up to 1.10
external/mpl/bind/dist/lib/isc/include/isc/meminfo.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/mutexblock.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/netaddr.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/netmgr.h up to 1.9
external/mpl/bind/dist/lib/isc/include/isc/netscope.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/os.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/parseint.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/pool.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/portset.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/print.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/quota.h up to 1.10
external/mpl/bind/dist/lib/isc/include/isc/radix.h up to 1.9
external/mpl/bind/dist/lib/isc/include/isc/ratelimiter.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/refcount.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/regex.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/region.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/resource.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/result.h up to 1.11
external/mpl/bind/dist/lib/isc/include/isc/rwlock.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/safe.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/serial.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/siphash.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/sockaddr.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/stats.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/stdio.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/strerr.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/string.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/symtab.h up to 1.7
external/mpl/bind/dist/lib/isc/include/isc/task.h up to 1.9
external/mpl/bind/dist/lib/isc/include/isc/taskpool.h up to 1.8
external/mpl/bind/dist/lib/isc/include/isc/timer.h up to 1.9
external/mpl/bind/dist/lib/isc/include/isc/tm.h up to 1.6
external/mpl/bind/dist/lib/isc/include/isc/types.h up to 1.12
external/mpl/bind/dist/lib/isc/include/isc/url.h up to 1.4
external/mpl/bind/dist/lib/isc/include/isc/util.h up to 1.15
external/mpl/bind/dist/lib/isc/netmgr/netmgr-int.h up to 1.10
external/mpl/bind/dist/lib/isc/netmgr/netmgr.c  up to 1.13
external/mpl/bind/dist/lib/isc/netmgr/tcp.c    up to 1.10
external/mpl/bind/dist/lib/isc/netmgr/tcpdns.c  up to 1.10
external/mpl/bind/dist/lib/isc/netmgr/udp.c    up to 1.13
external/mpl/bind/dist/lib/isc/netmgr/uv-compat.c up to 1.7
external/mpl/bind/dist/lib/isc/netmgr/uv-compat.h up to 1.6
external/mpl/bind/dist/lib/isc/netmgr/uverr2result.c up to 1.6
external/mpl/bind/dist/lib/isccc/Makefile.in    up to 1.1.1.8
external/mpl/bind/dist/lib/isccc/alist.c        up to 1.8
external/mpl/bind/dist/lib/isccc/base64.c      up to 1.6
external/mpl/bind/dist/lib/isccc/cc.c          up to 1.8
external/mpl/bind/dist/lib/isccc/ccmsg.c        up to 1.7
external/mpl/bind/dist/lib/isccc/symtab.c      up to 1.8
external/mpl/bind/dist/lib/isccc/include/isccc/alist.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/base64.h up to 1.6
external/mpl/bind/dist/lib/isccc/include/isccc/cc.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/ccmsg.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/events.h up to 1.6
external/mpl/bind/dist/lib/isccc/include/isccc/sexpr.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/symtab.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/symtype.h up to 1.6
external/mpl/bind/dist/lib/isccc/include/isccc/types.h up to 1.7
external/mpl/bind/dist/lib/isccc/include/isccc/util.h up to 1.8
external/mpl/bind/dist/lib/isccfg/Makefile.in  up to 1.1.1.8
external/mpl/bind/dist/lib/isccfg/aclconf.c    up to 1.10
external/mpl/bind/dist/lib/isccfg/dnsconf.c    up to 1.6
external/mpl/bind/dist/lib/isccfg/kaspconf.c    up to 1.7
external/mpl/bind/dist/lib/isccfg/log.c        up to 1.6
external/mpl/bind/dist/lib/isccfg/namedconf.c  up to 1.15
external/mpl/bind/dist/lib/isccfg/parser.c      up to 1.14
external/mpl/bind/dist/lib/isccfg/include/isccfg/aclconf.h up to 1.8
external/mpl/bind/dist/lib/isccfg/include/isccfg/cfg.h up to 1.8
external/mpl/bind/dist/lib/isccfg/include/isccfg/grammar.h up to 1.9
external/mpl/bind/dist/lib/isccfg/include/isccfg/kaspconf.h up to 1.5
external/mpl/bind/dist/lib/isccfg/include/isccfg/log.h up to 1.6
external/mpl/bind/dist/lib/isccfg/include/isccfg/namedconf.h up to 1.7
external/mpl/bind/dist/lib/ns/Makefile.in      up to 1.8
external/mpl/bind/dist/lib/ns/client.c          up to 1.20
external/mpl/bind/dist/lib/ns/hooks.c          up to 1.10
external/mpl/bind/dist/lib/ns/interfacemgr.c    up to 1.16
external/mpl/bind/dist/lib/ns/listenlist.c      up to 1.7
external/mpl/bind/dist/lib/ns/log.c            up to 1.7
external/mpl/bind/dist/lib/ns/notify.c          up to 1.7
external/mpl/bind/dist/lib/ns/pfilter.c        up to 1.4
external/mpl/bind/dist/lib/ns/query.c          up to 1.20
external/mpl/bind/dist/lib/ns/server.c          up to 1.9
external/mpl/bind/dist/lib/ns/sortlist.c        up to 1.8
external/mpl/bind/dist/lib/ns/update.c          up to 1.14
external/mpl/bind/dist/lib/ns/xfrout.c          up to 1.14
external/mpl/bind/dist/lib/ns/include/ns/client.h up to 1.16
external/mpl/bind/dist/lib/ns/include/ns/hooks.h up to 1.8
external/mpl/bind/dist/lib/ns/include/ns/interfacemgr.h up to 1.10
external/mpl/bind/dist/lib/ns/include/ns/listenlist.h up to 1.7
external/mpl/bind/dist/lib/ns/include/ns/log.h  up to 1.7
external/mpl/bind/dist/lib/ns/include/ns/notify.h up to 1.6
external/mpl/bind/dist/lib/ns/include/ns/query.h up to 1.8
external/mpl/bind/dist/lib/ns/include/ns/server.h up to 1.8
external/mpl/bind/dist/lib/ns/include/ns/sortlist.h up to 1.6
external/mpl/bind/dist/lib/ns/include/ns/stats.h up to 1.8
external/mpl/bind/dist/lib/ns/include/ns/types.h up to 1.8
external/mpl/bind/dist/lib/ns/include/ns/update.h up to 1.6
external/mpl/bind/dist/lib/ns/include/ns/xfrout.h up to 1.6
external/mpl/bind/dist/m4/ax_check_openssl.m4  up to 1.1.1.7
external/mpl/bind/dist/m4/ax_gcc_func_attribute.m4 up to 1.1.1.3
external/mpl/bind/dist/m4/ax_pthread.m4        up to 1.1.1.3
external/mpl/bind/dist/m4/libtool.m4            up to 1.1.1.4
external/mpl/bind/dist/m4/ltoptions.m4          up to 1.1.1.2
external/mpl/bind/dist/m4/ltsugar.m4            up to 1.1.1.3
external/mpl/bind/dist/m4/ltversion.m4          up to 1.1.1.2
external/mpl/bind/dist/m4/lt~obsolete.m4        up to 1.1.1.3
external/mpl/bind/dist/util/bindkeys.pl        up to 1.1.1.5
external/mpl/bind/dist/util/check-make-install.in up to 1.1.1.5
external/mpl/bind/include/config.h              up to 1.16
external/mpl/bind/include/dns/code.h            up to 1.9
external/mpl/bind/include/dns/enumclass.h      up to 1.7
external/mpl/bind/include/dns/enumtype.h        up to 1.9
external/mpl/bind/include/dns/rdatastruct.h    up to 1.11
external/mpl/bind/lib/libbind9/Makefile        up to 1.3
external/mpl/bind/lib/libbind9/shlib_version    up to 1.13
external/mpl/bind/lib/libdns/Makefile          up to 1.10
external/mpl/bind/lib/libdns/shlib_version      up to 1.13
external/mpl/bind/lib/libirs/Makefile          up to 1.3
external/mpl/bind/lib/libirs/shlib_version      up to 1.13
external/mpl/bind/lib/libisc/Makefile          up to 1.21
external/mpl/bind/lib/libisc/shlib_version      up to 1.13
external/mpl/bind/lib/libisccc/Makefile        up to 1.4
external/mpl/bind/lib/libisccc/shlib_version    up to 1.13
external/mpl/bind/lib/libisccfg/Makefile        up to 1.4
external/mpl/bind/lib/libisccfg/shlib_version  up to 1.13
external/mpl/bind/lib/libns/Makefile            up to 1.6
external/mpl/bind/lib/libns/shlib_version      up to 1.13

Update to bind 9.18.24, which fixes several CVE and is a long term
supported version.

(martin)

2024-02-25 13:18:27 UTC netbsd-10 commitmail json YAML

Ammend ticket #608 for additional pullups

(martin)

2024-02-25 13:16:13 UTC netbsd-10 commitmail json YAML

Additionally pull up the following for ticket #608 to fix the build:

distrib/sets/lists/base/shl.mi 1.975
distrib/sets/lists/debug/shl.mi 1.336

bump libunbound

(martin)

2024-02-24 13:11:46 UTC netbsd-10 commitmail json YAML

2024-02-24 13:10:18 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by andvar in ticket #609):

sys/arch/evbarm/netwalker/netwalker_usb.c: revision 1.9
sys/arch/evbarm/kobo/kobo_usb.c: revision 1.4

sc_init_md_hook expects two params since interface change in imxusbvar.h rev 1.7
thus adjust kobo_usb_init() and netwalker_usb_init() functions accordingly.

Fixes build for KOBO and NETWALKER(_MD) kernel configs.

(martin)

2024-02-24 13:07:35 UTC netbsd-10 commitmail json YAML

Pull up the following, requested by christos in ticket #608:

external/bsd/nsd/dist/doc/NSD-VERIFY-MODS      up to 1.1.1.1
external/bsd/nsd/dist/util/proxy_protocol.c    up to 1.1.1.1
external/bsd/nsd/dist/util/proxy_protocol.h    up to 1.1.1.1
external/bsd/nsd/dist/contrib/autocomplete_nsd-control.bash up to 1.1.1.1
external/bsd/nsd/dist/SECURITY.md              up to 1.1.1.1
external/bsd/nsd/dist/udbradtree.c              delete
external/bsd/nsd/dist/udbradtree.h              delete
external/bsd/nsd/dist/udbzone.c                delete
external/bsd/nsd/dist/udbzone.h                delete
external/bsd/nsd/dist/.github/FUNDING.yml      delete
external/bsd/nsd/dist/contrib/nsd.socket        delete
external/bsd/nsd/Makefile.inc                  up to 1.8
external/bsd/nsd/dist/Makefile.in              up to 1.1.1.9
external/bsd/nsd/dist/README.md                up to 1.1.1.4
external/bsd/nsd/dist/acx_nlnetlabs.m4          up to 1.1.1.4
external/bsd/nsd/dist/answer.c                  up to 1.1.1.2
external/bsd/nsd/dist/answer.h                  up to 1.1.1.2
external/bsd/nsd/dist/axfr.c                    up to 1.1.1.5
external/bsd/nsd/dist/axfr.h                    up to 1.1.1.3
external/bsd/nsd/dist/bitset.h                  up to 1.1.1.2
external/bsd/nsd/dist/buffer.h                  up to 1.1.1.2
external/bsd/nsd/dist/config.h.in              up to 1.1.1.9
external/bsd/nsd/dist/configlexer.c            up to 1.9
external/bsd/nsd/dist/configlexer.lex          up to 1.1.1.8
external/bsd/nsd/dist/configparser.c            up to 1.9
external/bsd/nsd/dist/configparser.h            up to 1.9
external/bsd/nsd/dist/configparser.y            up to 1.1.1.8
external/bsd/nsd/dist/configure                up to 1.3
external/bsd/nsd/dist/configure.ac              up to 1.6
external/bsd/nsd/dist/dbaccess.c                up to 1.1.1.6
external/bsd/nsd/dist/dbcreate.c                up to 1.1.1.6
external/bsd/nsd/dist/difffile.c                up to 1.1.1.8
external/bsd/nsd/dist/difffile.h                up to 1.1.1.4
external/bsd/nsd/dist/dname.h                  up to 1.1.1.2
external/bsd/nsd/dist/dns.h                    up to 1.1.1.6
external/bsd/nsd/dist/edns.c                    up to 1.1.1.4
external/bsd/nsd/dist/edns.h                    up to 1.1.1.3
external/bsd/nsd/dist/ipc.c                    up to 1.1.1.8
external/bsd/nsd/dist/ixfr.c                    up to 1.1.1.2
external/bsd/nsd/dist/ixfr.h                    up to 1.1.1.2
external/bsd/nsd/dist/ixfrcreate.c              up to 1.1.1.2
external/bsd/nsd/dist/ixfrcreate.h              up to 1.1.1.2
external/bsd/nsd/dist/namedb.h                  up to 1.1.1.5
external/bsd/nsd/dist/netio.h                  up to 1.1.1.2
external/bsd/nsd/dist/nsd-checkconf.8.in        up to 1.1.1.9
external/bsd/nsd/dist/nsd-checkconf.c          up to 1.1.1.8
external/bsd/nsd/dist/nsd-checkzone.8.in        up to 1.1.1.9
external/bsd/nsd/dist/nsd-checkzone.c          up to 1.1.1.6
external/bsd/nsd/dist/nsd-control.8.in          up to 1.1.1.9
external/bsd/nsd/dist/nsd-control.c            up to 1.1.1.9
external/bsd/nsd/dist/nsd-mem.c                up to 1.1.1.5
external/bsd/nsd/dist/nsd.8.in                  up to 1.1.1.9
external/bsd/nsd/dist/nsd.c                    up to 1.1.1.9
external/bsd/nsd/dist/nsd.conf.5.in            up to 1.1.1.9
external/bsd/nsd/dist/nsd.conf.sample.in        up to 1.1.1.8
external/bsd/nsd/dist/nsd.h                    up to 1.1.1.8
external/bsd/nsd/dist/nsec3.c                  up to 1.1.1.7
external/bsd/nsd/dist/nsec3.h                  up to 1.1.1.4
external/bsd/nsd/dist/options.c                up to 1.5
external/bsd/nsd/dist/options.h                up to 1.1.1.9
external/bsd/nsd/dist/packet.h                  up to 1.1.1.5
external/bsd/nsd/dist/popen3.h                  up to 1.1.1.3
external/bsd/nsd/dist/query.c                  up to 1.1.1.8
external/bsd/nsd/dist/query.h                  up to 1.1.1.5
external/bsd/nsd/dist/rbtree.h                  up to 1.1.1.3
external/bsd/nsd/dist/rdata.c                  up to 1.1.1.4
external/bsd/nsd/dist/rdata.h                  up to 1.1.1.3
external/bsd/nsd/dist/region-allocator.h        up to 1.1.1.2
external/bsd/nsd/dist/remote.c                  up to 1.1.1.9
external/bsd/nsd/dist/remote.h                  up to 1.1.1.4
external/bsd/nsd/dist/rrl.c                    up to 1.1.1.4
external/bsd/nsd/dist/server.c                  up to 1.8
external/bsd/nsd/dist/tsig-openssl.h            up to 1.1.1.3
external/bsd/nsd/dist/tsig.h                    up to 1.1.1.2
external/bsd/nsd/dist/udb.h                    up to 1.1.1.5
external/bsd/nsd/dist/util.h                    up to 1.8
external/bsd/nsd/dist/verify.c                  up to 1.1.1.2
external/bsd/nsd/dist/verify.h                  up to 1.1.1.2
external/bsd/nsd/dist/xfr-inspect.c            up to 1.1.1.3
external/bsd/nsd/dist/xfrd-disk.c              up to 1.1.1.6
external/bsd/nsd/dist/xfrd-tcp.c                up to 1.1.1.6
external/bsd/nsd/dist/xfrd.c                    up to 1.1.1.8
external/bsd/nsd/dist/xfrd.h                    up to 1.1.1.5
external/bsd/nsd/dist/zlexer.c                  up to 1.8
external/bsd/nsd/dist/zlexer.lex                up to 1.1.1.6
external/bsd/nsd/dist/zonec.c                  up to 1.1.1.7
external/bsd/nsd/dist/zonec.h                  up to 1.1.1.6
external/bsd/nsd/dist/compat/cpuset.h          up to 1.1.1.2
external/bsd/nsd/dist/compat/fake-rfc2553.h    up to 1.1.1.2
external/bsd/nsd/dist/contrib/README            up to 1.1.1.4
external/bsd/nsd/dist/dnstap/dnstap.c          up to 1.1.1.4
external/bsd/nsd/dist/dnstap/dnstap.h          up to 1.1.1.3
external/bsd/nsd/dist/dnstap/dnstap_collector.c up to 1.1.1.3
external/bsd/nsd/dist/doc/CREDITS              up to 1.1.1.3
external/bsd/nsd/dist/doc/ChangeLog            up to 1.1.1.9
external/bsd/nsd/dist/doc/README                up to 1.3
external/bsd/nsd/dist/doc/README.svn            up to 1.1.1.2
external/bsd/nsd/dist/doc/RELNOTES              up to 1.1.1.9
external/bsd/nsd/include/config.h              up to 1.12
external/bsd/nsd/lib/libnsd/Makefile            up to 1.6
external/bsd/unbound/dist/contrib/unbound.init_yocto up to 1.1.1.1
external/bsd/unbound/dist/testdata/00-lint.tdir/00-lint.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/04-checkconf.tdir/bad.proxy-and-dnscrypt up to 1.1.1.1
external/bsd/unbound/dist/testdata/04-checkconf.tdir/bad.proxy-and-https up to 1.1.1.1
external/bsd/unbound/dist/testdata/07-confroot.tdir/07-confroot.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/09-unbound-control.tdir/conf.bad_credentials up to 1.1.1.1
external/bsd/unbound/dist/testdata/09-unbound-control.tdir/conf.spoofed_credentials up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede.tdir/bogus/dnskey-failures.test.signed up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede.tdir/bogus/dnssec-failures.test.signed up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede.tdir/bogus/nsec-failures.test.signed up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede.tdir/bogus/rrsig-failures.test.signed up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede.tdir/bogus/trust-anchors up to 1.1.1.1
external/bsd/unbound/dist/testdata/nss_compile.tdir/nss_compile.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_anchor.tdir/root_anchor.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_hints.tdir/root_hints.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_cached_ede.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/stat_values.tdir/stat_values_cachedb.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/stat_values.tdir/stat_values_downstream_cookies.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_ignore_empty.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_prezero.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.test.scenario up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.testns up to 1.1.1.1
external/bsd/unbound/dist/testdata/acl_interface.tdir/acl_interface.testns2 up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_cached_ede.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_servfail_cname.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/disable_edns_do.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/ede_cache_snoop_not_auth.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/edns_downstream_cookies.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_auth_tc.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_cname_minimise_nx.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_failreply.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_scopezero.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_nat64.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_nat64_prefix.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_nat64_prefix48.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/iter_scrub_rr_length.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/rpz_cached_cname.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_0ttl_nodata.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_0ttl_nxdomain.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_0ttl_servfail.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_cached_servfail.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_cached_servfail_refresh.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/serve_expired_client_timeout_servfail.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_cached_servfail.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_global_prefetch.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_global_prefetch_always_forward.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_global_prefetch_expired.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/subnet_global_prefetch_with_client_ecs.crpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/val_any_negcache.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/val_scrub_rr_length.rpl up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.servfail.testns up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/cachedb_no_store.tdir/cachedb_no_store.testns up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/ip_ratelimit.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/ip_ratelimit.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/ip_ratelimit.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/ip_ratelimit.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/ip_ratelimit.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/unbound_control.key up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/unbound_control.pem up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/unbound_server.key up to 1.1.1.1
external/bsd/unbound/dist/testdata/ip_ratelimit.tdir/unbound_server.pem up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.test.scenario up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/proxy_protocol.testns up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/unbound_server.key up to 1.1.1.1
external/bsd/unbound/dist/testdata/proxy_protocol.tdir/unbound_server.pem up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/root_zonemd.tdir/root_zonemd.testns up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.conf up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.dsc up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.post up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.pre up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.test up to 1.1.1.1
external/bsd/unbound/dist/testdata/stub_auth_tc.tdir/stub_auth_tc.testns up to 1.1.1.1
external/bsd/unbound/dist/util/proxy_protocol.c up to 1.1.1.1
external/bsd/unbound/dist/util/proxy_protocol.h up to 1.1.1.1
external/bsd/unbound/dist/util/rfc_1982.c      up to 1.1.1.1
external/bsd/unbound/dist/util/rfc_1982.h      up to 1.1.1.1
external/bsd/unbound/dist/util/siphash.c        up to 1.1.1.1
external/bsd/unbound/dist/util/siphash.h        up to 1.1.1.1
external/bsd/unbound/dist/util/timeval_func.c  up to 1.1.1.1
external/bsd/unbound/dist/util/timeval_func.h  up to 1.1.1.1
external/bsd/unbound/dist/testcode/mini_tpkg.sh delete
external/bsd/unbound/dist/testdata/ede_cache_snoop_noth_auth.rpl delete
external/bsd/unbound/dist/testdata/serve_expired_servfail.rpl delete
external/bsd/unbound/dist/testdata/subnet_prefetch_with_client_ecs.crpl delete
external/bsd/unbound/dist/testdata/dnscrypt_cert.tdir/precheck.sh delete
external/bsd/unbound/dist/testdata/dnscrypt_cert_chacha.tdir/precheck.sh delete
external/bsd/unbound/dist/testdata/ede.tdir/bogus/clean.sh delete
external/bsd/unbound/Makefile.inc              up to 1.5
external/bsd/unbound/dist/Makefile.in          up to 1.1.1.8
external/bsd/unbound/dist/README.md            up to 1.1.1.4
external/bsd/unbound/dist/acx_nlnetlabs.m4      up to 1.1.1.5
external/bsd/unbound/dist/acx_python.m4        up to 1.1.1.5
external/bsd/unbound/dist/config.guess          up to 1.8
external/bsd/unbound/dist/config.h.in          up to 1.1.1.8
external/bsd/unbound/dist/config.sub            up to 1.7
external/bsd/unbound/dist/configure            up to 1.1.1.8
external/bsd/unbound/dist/configure.ac          up to 1.1.1.8
external/bsd/unbound/dist/cachedb/cachedb.c    up to 1.1.1.8
external/bsd/unbound/dist/cachedb/redis.c      up to 1.1.1.3
external/bsd/unbound/dist/compat/arc4random.c  up to 1.1.1.5
external/bsd/unbound/dist/compat/getentropy_solaris.c up to 1.1.1.4
external/bsd/unbound/dist/contrib/Dockerfile.tests up to 1.1.1.2
external/bsd/unbound/dist/contrib/README        up to 1.1.1.7
external/bsd/unbound/dist/contrib/aaaa-filter-iterator.patch up to 1.1.1.5
external/bsd/unbound/dist/contrib/unbound.service.in up to 1.1.1.6
external/bsd/unbound/dist/daemon/acl_list.c    up to 1.1.1.6
external/bsd/unbound/dist/daemon/acl_list.h    up to 1.1.1.5
external/bsd/unbound/dist/daemon/cachedump.c    up to 1.1.1.6
external/bsd/unbound/dist/daemon/daemon.c      up to 1.1.1.8
external/bsd/unbound/dist/daemon/daemon.h      up to 1.1.1.5
external/bsd/unbound/dist/daemon/remote.c      up to 1.1.1.8
external/bsd/unbound/dist/daemon/remote.h      up to 1.1.1.4
external/bsd/unbound/dist/daemon/stats.c        up to 1.1.1.8
external/bsd/unbound/dist/daemon/stats.h        up to 1.1.1.3
external/bsd/unbound/dist/daemon/worker.c      up to 1.1.1.8
external/bsd/unbound/dist/daemon/worker.h      up to 1.1.1.3
external/bsd/unbound/dist/dns64/dns64.c        up to 1.1.1.7
external/bsd/unbound/dist/dnstap/dnstap.c      up to 1.1.1.6
external/bsd/unbound/dist/dnstap/dnstap.h      up to 1.1.1.4
external/bsd/unbound/dist/dnstap/dnstap.m4      up to 1.1.1.3
external/bsd/unbound/dist/dnstap/dtstream.c    up to 1.1.1.3
external/bsd/unbound/dist/dnstap/unbound-dnstap-socket.c up to 1.1.1.3
external/bsd/unbound/dist/doc/Changelog        up to 1.1.1.8
external/bsd/unbound/dist/doc/README            up to 1.1.1.8
external/bsd/unbound/dist/doc/README.DNS64      up to 1.1.1.2
external/bsd/unbound/dist/doc/example.conf.in  up to 1.1.1.8
external/bsd/unbound/dist/doc/libunbound.3.in  up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound-anchor.8.in up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound-checkconf.8.in up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound-control.8.in up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound-host.1.in up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound.8.in      up to 1.1.1.8
external/bsd/unbound/dist/doc/unbound.conf.5.in up to 1.1.1.8
external/bsd/unbound/dist/dynlibmod/dynlibmod.c up to 1.1.1.2
external/bsd/unbound/dist/edns-subnet/addrtree.c up to 1.1.1.4
external/bsd/unbound/dist/edns-subnet/addrtree.h up to 1.1.1.3
external/bsd/unbound/dist/edns-subnet/subnetmod.c up to 1.1.1.7
external/bsd/unbound/dist/edns-subnet/subnetmod.h up to 1.1.1.5
external/bsd/unbound/dist/ipset/ipset.c        up to 1.1.1.3
external/bsd/unbound/dist/iterator/iter_delegpt.c up to 1.1.1.6
external/bsd/unbound/dist/iterator/iter_delegpt.h up to 1.1.1.7
external/bsd/unbound/dist/iterator/iter_hints.c up to 1.1.1.6
external/bsd/unbound/dist/iterator/iter_priv.c  up to 1.1.1.2
external/bsd/unbound/dist/iterator/iter_resptype.c up to 1.1.1.2
external/bsd/unbound/dist/iterator/iter_resptype.h up to 1.1.1.2
external/bsd/unbound/dist/iterator/iter_scrub.c up to 1.1.1.8
external/bsd/unbound/dist/iterator/iter_scrub.h up to 1.1.1.2
external/bsd/unbound/dist/iterator/iter_utils.c up to 1.1.1.8
external/bsd/unbound/dist/iterator/iter_utils.h up to 1.1.1.7
external/bsd/unbound/dist/iterator/iterator.c  up to 1.1.1.8
external/bsd/unbound/dist/iterator/iterator.h  up to 1.1.1.7
external/bsd/unbound/dist/libunbound/context.c  up to 1.1.1.8
external/bsd/unbound/dist/libunbound/context.h  up to 1.1.1.6
external/bsd/unbound/dist/libunbound/libunbound.c up to 1.1.1.8
external/bsd/unbound/dist/libunbound/libworker.c up to 1.1.1.8
external/bsd/unbound/dist/libunbound/unbound-event.h up to 1.1.1.5
external/bsd/unbound/dist/libunbound/unbound.h  up to 1.5
external/bsd/unbound/dist/libunbound/python/libunbound.i up to 1.1.1.5
external/bsd/unbound/dist/pythonmod/interface.i up to 1.1.1.8
external/bsd/unbound/dist/pythonmod/pythonmod.c up to 1.1.1.6
external/bsd/unbound/dist/pythonmod/pythonmod.h up to 1.1.1.5
external/bsd/unbound/dist/pythonmod/pythonmod_utils.c up to 1.1.1.5
external/bsd/unbound/dist/pythonmod/ubmodule-msg.py up to 1.1.1.2
external/bsd/unbound/dist/pythonmod/ubmodule-tst.py up to 1.1.1.2
external/bsd/unbound/dist/pythonmod/doc/examples/example0-1.py up to 1.1.1.4
external/bsd/unbound/dist/pythonmod/doc/examples/example0.rst up to 1.1.1.4
external/bsd/unbound/dist/pythonmod/doc/modules/config.rst up to 1.1.1.3
external/bsd/unbound/dist/pythonmod/doc/modules/env.rst up to 1.1.1.2
external/bsd/unbound/dist/pythonmod/examples/edns.py up to 1.1.1.4
external/bsd/unbound/dist/pythonmod/examples/inplace_callbacks.py up to 1.1.1.6
external/bsd/unbound/dist/pythonmod/examples/log.py up to 1.1.1.2
external/bsd/unbound/dist/respip/respip.c      up to 1.1.1.6
external/bsd/unbound/dist/respip/respip.h      up to 1.1.1.4
external/bsd/unbound/dist/services/authzone.c  up to 1.3
external/bsd/unbound/dist/services/listen_dnsport.c up to 1.1.1.8
external/bsd/unbound/dist/services/listen_dnsport.h up to 1.1.1.6
external/bsd/unbound/dist/services/localzone.c  up to 1.1.1.8
external/bsd/unbound/dist/services/localzone.h  up to 1.1.1.7
external/bsd/unbound/dist/services/mesh.c      up to 1.1.1.8
external/bsd/unbound/dist/services/mesh.h      up to 1.1.1.6
external/bsd/unbound/dist/services/modstack.c  up to 1.1.1.7
external/bsd/unbound/dist/services/outside_network.c up to 1.1.1.8
external/bsd/unbound/dist/services/outside_network.h up to 1.1.1.8
external/bsd/unbound/dist/services/rpz.c        up to 1.1.1.3
external/bsd/unbound/dist/services/rpz.h        up to 1.1.1.3
external/bsd/unbound/dist/services/view.c      up to 1.1.1.3
external/bsd/unbound/dist/services/cache/dns.c  up to 1.1.1.8
external/bsd/unbound/dist/services/cache/dns.h  up to 1.1.1.7
external/bsd/unbound/dist/services/cache/infra.c up to 1.1.1.7
external/bsd/unbound/dist/services/cache/infra.h up to 1.1.1.6
external/bsd/unbound/dist/sldns/rrdef.c        up to 1.1.1.6
external/bsd/unbound/dist/sldns/rrdef.h        up to 1.1.1.6
external/bsd/unbound/dist/sldns/str2wire.c      up to 1.1.1.7
external/bsd/unbound/dist/sldns/str2wire.h      up to 1.1.1.5
external/bsd/unbound/dist/sldns/wire2str.c      up to 1.1.1.7
external/bsd/unbound/dist/sldns/wire2str.h      up to 1.1.1.6
external/bsd/unbound/dist/smallapp/unbound-anchor.c up to 1.1.1.7
external/bsd/unbound/dist/smallapp/unbound-checkconf.c up to 1.1.1.8
external/bsd/unbound/dist/smallapp/unbound-control.c up to 1.1.1.8
external/bsd/unbound/dist/smallapp/unbound-host.c up to 1.1.1.7
external/bsd/unbound/dist/testcode/delayer.c    up to 1.1.1.6
external/bsd/unbound/dist/testcode/do-tests.sh  up to 1.1.1.5
external/bsd/unbound/dist/testcode/dohclient.c  up to 1.1.1.3
external/bsd/unbound/dist/testcode/fake_event.c up to 1.1.1.8
external/bsd/unbound/dist/testcode/lock_verify.c up to 1.1.1.4
external/bsd/unbound/dist/testcode/mini_tdir.sh up to 1.1.1.4
external/bsd/unbound/dist/testcode/perf.c      up to 1.1.1.7
external/bsd/unbound/dist/testcode/replay.c    up to 1.1.1.6
external/bsd/unbound/dist/testcode/streamtcp.1  up to 1.1.1.3
external/bsd/unbound/dist/testcode/streamtcp.c  up to 1.1.1.8
external/bsd/unbound/dist/testcode/testpkts.c  up to 1.1.1.8
external/bsd/unbound/dist/testcode/testpkts.h  up to 1.1.1.5
external/bsd/unbound/dist/testcode/unitauth.c  up to 1.1.1.5
external/bsd/unbound/dist/testcode/unitecs.c    up to 1.1.1.3
external/bsd/unbound/dist/testcode/unitlruhash.c up to 1.1.1.3
external/bsd/unbound/dist/testcode/unitmain.c  up to 1.1.1.8
external/bsd/unbound/dist/testcode/unittcpreuse.c up to 1.1.1.2
external/bsd/unbound/dist/testcode/unitverify.c up to 1.1.1.6
external/bsd/unbound/dist/testdata/auth_xfr_host.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/autotrust_init_fail.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/autotrust_init_failsig.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/autotrust_probefail.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/autotrust_probefailsig.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/autotrust_revtp_use.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/black_ds_entry.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/black_key_entry.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/black_prime_entry.rpl up to 1.1.1.6
external/bsd/unbound/dist/testdata/common.sh    up to 1.1.1.4
external/bsd/unbound/dist/testdata/dns64_lookup.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/fetch_glue.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/fetch_glue_cname.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/fwd_0ttlservfail.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_dnsseclame_bug.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_dnsseclame_ds.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_dnsseclame_ta.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_donotq127.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/iter_emptydp.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/iter_emptydp_for_glue.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/iter_lame_aaaa.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_lamescrub.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/iter_nxns_cached.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_nxns_fallback.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_primenoglue.rpl up to 1.1.1.6
external/bsd/unbound/dist/testdata/iter_privaddr.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_ranoaa_lame.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_reclame_two.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_recurse.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/iter_scrub_ns.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_scrub_ns_fwd.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_scrub_ns_side.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/iter_stublastresort.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/nsid_bogus.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/root_key_sentinel.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/rpz_ixfr.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/rpz_nsdname.rpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/rpz_respip.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/subnet_derived.crpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/subnet_format_ip4.crpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/subnet_not_whitelisted.crpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/subnet_prefetch.crpl up to 1.1.1.2
external/bsd/unbound/dist/testdata/subnet_without_validator.crpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_any.rpl  up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_any_dname.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_cnametocloser_nosig.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_cnametoinsecure.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_cnametonodata_nonsec.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_cnametooptout.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_cnametoposnowc.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_deleg_nons.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_dnamewc.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_ds_cname.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_faildnskey.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_faildnskey_ok.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_nodata_failsig.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_nodata_failwc.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_nokeyprime.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_nsec3_b1_nameerror_nowc.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_nsec3_b2_nodata_nons.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_nsec3_b4_wild_wr.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_nsec3_entnodata_optout_badopt.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_nsec3_nods_badsig.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_nx_failwc.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_nx_nsec3_collision.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_nx_overreach.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/val_positive_nosigs.rpl up to 1.1.1.3
external/bsd/unbound/dist/testdata/val_secds_nosig.rpl up to 1.1.1.4
external/bsd/unbound/dist/testdata/val_ta_algo_missing.rpl up to 1.1.1.5
external/bsd/unbound/dist/testdata/00-lint.tdir/00-lint.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/01-doc.tdir/01-doc.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/03-testbound.tdir/03-testbound.test up to 1.1.1.3
external/bsd/unbound/dist/testdata/04-checkconf.tdir/04-checkconf.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/07-confroot.tdir/07-confroot.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/07-confroot.tdir/07-confroot.test up to 1.1.1.3
external/bsd/unbound/dist/testdata/08-host-lib.tdir/08-host-lib.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/08-host-lib.tdir/08-host-lib.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/09-unbound-control.tdir/09-unbound-control.conf up to 1.1.1.2
external/bsd/unbound/dist/testdata/09-unbound-control.tdir/09-unbound-control.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/clang-analysis.tdir/clang-analysis.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert.tdir/dnscrypt_cert.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert.tdir/dnscrypt_cert.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert.tdir/dnscrypt_cert.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert_chacha.tdir/dnscrypt_cert_chacha.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert_chacha.tdir/dnscrypt_cert_chacha.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnscrypt_cert_chacha.tdir/dnscrypt_cert_chacha.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap.tdir/dnstap.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap.tdir/dnstap.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap.tdir/dnstap.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_reconnect.tdir/dnstap_reconnect.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_reconnect.tdir/dnstap_reconnect.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_reconnect.tdir/dnstap_reconnect.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tcp.tdir/dnstap_tcp.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tcp.tdir/dnstap_tcp.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tcp.tdir/dnstap_tcp.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls.tdir/dnstap_tls.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls.tdir/dnstap_tls.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls.tdir/dnstap_tls.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badcert.tdir/dnstap_tls_badcert.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badcert.tdir/dnstap_tls_badcert.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badcert.tdir/dnstap_tls_badcert.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badname.tdir/dnstap_tls_badname.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badname.tdir/dnstap_tls_badname.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_badname.tdir/dnstap_tls_badname.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_clientauth.tdir/dnstap_tls_clientauth.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_clientauth.tdir/dnstap_tls_clientauth.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_clientauth.tdir/dnstap_tls_clientauth.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_peername.tdir/dnstap_tls_peername.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_peername.tdir/dnstap_tls_peername.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dnstap_tls_peername.tdir/dnstap_tls_peername.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream.tdir/doh_downstream.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream.tdir/doh_downstream.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream.tdir/doh_downstream.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_buffer_size.tdir/doh_downstream_buffer_size.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_buffer_size.tdir/doh_downstream_buffer_size.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_buffer_size.tdir/doh_downstream_buffer_size.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_endpoint.tdir/doh_downstream_endpoint.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_endpoint.tdir/doh_downstream_endpoint.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_endpoint.tdir/doh_downstream_endpoint.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_notls.tdir/doh_downstream_notls.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_notls.tdir/doh_downstream_notls.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_notls.tdir/doh_downstream_notls.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_post.tdir/doh_downstream_post.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_post.tdir/doh_downstream_post.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/doh_downstream_post.tdir/doh_downstream_post.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/dynlibmod.tdir/dynlibmod.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/dynlibmod.tdir/dynlibmod.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/dynlibmod.tdir/dynlibmod.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/ede.tdir/ede.conf up to 1.1.1.2
external/bsd/unbound/dist/testdata/ede.tdir/ede.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/ede.tdir/ede.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/ede.tdir/bogus/make-broken-zone.sh up to 1.1.1.2
external/bsd/unbound/dist/testdata/fwd_ancil.tdir/fwd_ancil.post up to 1.1.1.3
external/bsd/unbound/dist/testdata/fwd_ancil.tdir/fwd_ancil.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/fwd_ancil.tdir/fwd_ancil.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/ipset.tdir/ipset.conf up to 1.1.1.2
external/bsd/unbound/dist/testdata/ipset.tdir/ipset.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/ipset.tdir/ipset.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/ipset.tdir/ipset.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/ipset.tdir/ipset.testns up to 1.1.1.2
external/bsd/unbound/dist/testdata/nss_compile.tdir/nss_compile.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/nss_compile.tdir/nss_compile.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/padding.tdir/padding.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/padding.tdir/padding.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/padding.tdir/padding.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/pylib.tdir/pylib.post up to 1.1.1.3
external/bsd/unbound/dist/testdata/pylib.tdir/pylib.pre up to 1.1.1.3
external/bsd/unbound/dist/testdata/pylib.tdir/pylib.test up to 1.1.1.4
external/bsd/unbound/dist/testdata/pymod.tdir/pymod.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/pymod.tdir/pymod.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/pymod.tdir/pymod.py up to 1.1.1.3
external/bsd/unbound/dist/testdata/pymod.tdir/pymod.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.post up to 1.1.1.2
external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.py up to 1.1.1.3
external/bsd/unbound/dist/testdata/pymod_thread.tdir/pymod_thread.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/ratelimit.tdir/ratelimit.testns up to 1.1.1.2
external/bsd/unbound/dist/testdata/root_anchor.tdir/root_anchor.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/root_anchor.tdir/root_anchor.test up to 1.1.1.3
external/bsd/unbound/dist/testdata/root_hints.tdir/root_hints.dsc up to 1.1.1.2
external/bsd/unbound/dist/testdata/root_hints.tdir/root_hints.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/speed_local.tdir/speed_local.test up to 1.1.1.2
external/bsd/unbound/dist/testdata/stat_values.tdir/stat_values.pre up to 1.1.1.2
external/bsd/unbound/dist/testdata/stat_values.tdir/stat_values.test up to 1.1.1.3
external/bsd/unbound/dist/testdata/stat_values.tdir/stat_values.testns up to 1.1.1.2
external/bsd/unbound/dist/testdata/stream_ssl.tdir/stream_ssl.serv.conf up to 1.1.1.4
external/bsd/unbound/dist/testdata/svcb.tdir/svcb.failure-cases-01 up to 1.1.1.2
external/bsd/unbound/dist/testdata/svcb.tdir/svcb.success-cases.zone up to 1.1.1.2
external/bsd/unbound/dist/testdata/svcb.tdir/svcb.success-cases.zone.cmp up to 1.1.1.2
external/bsd/unbound/dist/testdata/svcb.tdir/svcb.test up to 1.1.1.2
external/bsd/unbound/dist/util/config_file.c    up to 1.1.1.8
external/bsd/unbound/dist/util/config_file.h    up to 1.1.1.8
external/bsd/unbound/dist/util/configlexer.c    up to 1.1.1.8
external/bsd/unbound/dist/util/configlexer.lex  up to 1.1.1.8
external/bsd/unbound/dist/util/configparser.c  up to 1.1.1.8
external/bsd/unbound/dist/util/configparser.h  up to 1.1.1.8
external/bsd/unbound/dist/util/configparser.y  up to 1.1.1.8
external/bsd/unbound/dist/util/edns.c          up to 1.1.1.4
external/bsd/unbound/dist/util/edns.h          up to 1.1.1.4
external/bsd/unbound/dist/util/fptr_wlist.c    up to 1.1.1.8
external/bsd/unbound/dist/util/iana_ports.inc  up to 1.1.1.8
external/bsd/unbound/dist/util/log.c            up to 1.1.1.7
external/bsd/unbound/dist/util/module.c        up to 1.1.1.5
external/bsd/unbound/dist/util/module.h        up to 1.1.1.7
external/bsd/unbound/dist/util/net_help.c      up to 1.1.1.8
external/bsd/unbound/dist/util/net_help.h      up to 1.1.1.8
external/bsd/unbound/dist/util/netevent.c      up to 1.6
external/bsd/unbound/dist/util/netevent.h      up to 1.1.1.7
external/bsd/unbound/dist/util/regional.c      up to 1.1.1.5
external/bsd/unbound/dist/util/timehist.c      up to 1.1.1.3
external/bsd/unbound/dist/util/tube.c          up to 1.1.1.5
external/bsd/unbound/dist/util/tube.h          up to 1.1.1.3
external/bsd/unbound/dist/util/data/msgencode.c up to 1.1.1.7
external/bsd/unbound/dist/util/data/msgencode.h up to 1.1.1.3
external/bsd/unbound/dist/util/data/msgparse.c  up to 1.1.1.7
external/bsd/unbound/dist/util/data/msgparse.h  up to 1.1.1.6
external/bsd/unbound/dist/util/data/msgreply.c  up to 1.1.1.8
external/bsd/unbound/dist/util/data/msgreply.h  up to 1.1.1.8
external/bsd/unbound/dist/util/storage/dnstree.c up to 1.1.1.4
external/bsd/unbound/dist/util/storage/dnstree.h up to 1.1.1.4
external/bsd/unbound/dist/util/storage/lruhash.c up to 1.1.1.4
external/bsd/unbound/dist/util/storage/lruhash.h up to 1.1.1.3
external/bsd/unbound/dist/util/storage/slabhash.c up to 1.1.1.4
external/bsd/unbound/dist/util/storage/slabhash.h up to 1.1.1.4
external/bsd/unbound/dist/validator/autotrust.c up to 1.1.1.7
external/bsd/unbound/dist/validator/val_anchor.c up to 1.1.1.7
external/bsd/unbound/dist/validator/val_anchor.h up to 1.1.1.5
external/bsd/unbound/dist/validator/val_kcache.c up to 1.1.1.4
external/bsd/unbound/dist/validator/val_kcache.h up to 1.1.1.2
external/bsd/unbound/dist/validator/val_kentry.c up to 1.1.1.3
external/bsd/unbound/dist/validator/val_kentry.h up to 1.1.1.3
external/bsd/unbound/dist/validator/val_neg.c  up to 1.1.1.6
external/bsd/unbound/dist/validator/val_nsec.c  up to 1.1.1.6
external/bsd/unbound/dist/validator/val_nsec.h  up to 1.1.1.4
external/bsd/unbound/dist/validator/val_nsec3.c up to 1.1.1.5
external/bsd/unbound/dist/validator/val_nsec3.h up to 1.1.1.4
external/bsd/unbound/dist/validator/val_sigcrypt.c up to 1.1.1.7
external/bsd/unbound/dist/validator/val_sigcrypt.h up to 1.1.1.4
external/bsd/unbound/dist/validator/val_utils.c up to 1.1.1.5
external/bsd/unbound/dist/validator/val_utils.h up to 1.1.1.5
external/bsd/unbound/dist/validator/validator.c up to 1.1.1.8
external/bsd/unbound/dist/validator/validator.h up to 1.1.1.6
external/bsd/unbound/include/config.h          up to 1.12
external/bsd/unbound/lib/libunbound/Makefile    up to 1.9
external/bsd/unbound/lib/libunbound/shlib_version up to 1.6
external/bsd/wpa/bin/hostapd/Makefile          up to 1.17
external/bsd/wpa/dist/src/eap_peer/eap_config.h up to 1.2
external/bsd/wpa/dist/src/eap_peer/eap_peap.c  up to 1.2
external/bsd/wpa/dist/src/eap_peer/eap_tls_common.c up to 1.2
external/bsd/wpa/dist/src/eap_peer/eap_tls_common.h up to 1.2
external/bsd/wpa/dist/wpa_supplicant/wpa_supplicant.conf up to 1.2
external/mpl/dhcp/bind/dist/lib/dns/dst_api.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/Kyuafile    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/acl.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/adb.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/badcache.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/byaddr.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/cache.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/callbacks.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/catz.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/client.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/clientinfo.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/compress.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/db.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dbiterator.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dbtable.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/diff.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dispatch.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dlz.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dns64.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dnsrps.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dnssec.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dnstap.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dnstap.proto up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ds.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/tsig_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_internal.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_openssl.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_parse.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_parse.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_pkcs11.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dst_result.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/dyndb.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ecdb.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ecs.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/fixedname.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/forward.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/gen-unix.h  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/gen-win32.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/gen.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/geoip2.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/gssapi_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/gssapictx.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/hmac_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ipkeylist.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/iptable.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/journal.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/kasp.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/key.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/keydata.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/time.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/keymgr.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/keytable.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/lib.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/log.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/lookup.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/mapapi      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/master.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/masterdump.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/message.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/name.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ncache.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/nsec.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/nsec3.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/nta.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/openssl_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/openssldh_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/opensslecdsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/openssleddsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/opensslrsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/order.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/peer.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/pkcs11.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/pkcs11ecdsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/pkcs11eddsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/pkcs11rsa_link.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/portlist.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/private.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rbt.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rbtdb.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rbtdb.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rcode.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdatalist.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdatalist_p.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdataset.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdatasetiter.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdataslab.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/request.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/resolver.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/result.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rootns.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rpz.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rriterator.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rrl.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/sdb.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/sdlz.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/soa.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ssu.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ssu_external.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/stats.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/timer.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/tcpmsg.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/tkey.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/tsec.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/tsig.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/ttl.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/update.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/validator.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/version.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/view.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/xfrin.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/zone.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/acl.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/adb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/badcache.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/bit.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/byaddr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/cache.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/callbacks.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/catz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/cert.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/client.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/clientinfo.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/compress.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/db.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dbiterator.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dbtable.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/diff.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dispatch.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dlz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dlz_dlopen.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dns64.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dnsrps.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dnssec.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dnstap.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ds.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dsdigest.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/dyndb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ecdb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ecs.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/edns.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/events.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/fixedname.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/forward.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/geoip.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ipkeylist.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/iptable.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/journal.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/kasp.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/keydata.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/keyflags.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/keymgr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/keytable.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/keyvalues.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/lib.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/librpz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/lmdb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/log.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/lookup.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/master.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/masterdump.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/message.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/name.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ncache.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/nsec.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/nsec3.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/nta.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/opcode.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/order.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/peer.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/portlist.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/private.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rbt.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rcode.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdata.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdataclass.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdatalist.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdataset.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdatasetiter.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdataslab.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rdatatype.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/request.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/resolver.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/result.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rootns.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rpz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rriterator.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/rrl.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/sdb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/sdlz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/secalg.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/secproto.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/soa.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ssu.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/stats.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/tcpmsg.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/time.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/timer.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/tkey.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/tsec.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/tsig.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/ttl.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/types.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/update.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/validator.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/version.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/view.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/xfrin.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/zone.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/zonekey.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/zoneverify.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dns/zt.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dst/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dst/dst.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dst/gssapi.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/dst/result.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/zone_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/zonekey.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/zoneverify.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/zt.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/any_255/tsig_250.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/any_255/tsig_250.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/rdatastructpre.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/rdatastructsuf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/ch_3/a_1.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/ch_3/a_1.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/afsdb_18.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/afsdb_18.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/amtrelay_260.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/amtrelay_260.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/avc_258.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/avc_258.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/caa_257.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/caa_257.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cdnskey_60.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cdnskey_60.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cds_59.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cds_59.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cert_37.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cert_37.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cname_5.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/cname_5.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/csync_62.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/csync_62.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dlv_32769.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dlv_32769.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dname_39.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ds_43.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dname_39.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dnskey_48.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/dnskey_48.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/doa_259.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/doa_259.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ds_43.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/eui48_108.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/eui48_108.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/eui64_109.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/eui64_109.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/gpos_27.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/gpos_27.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/hinfo_13.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/hinfo_13.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/hip_55.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/hip_55.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ipseckey_45.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ipseckey_45.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/isdn_20.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/isdn_20.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/key_25.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/key_25.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/keydata_65533.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/keydata_65533.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/l32_105.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/l32_105.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/l64_106.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/l64_106.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/loc_29.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/loc_29.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/lp_107.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/lp_107.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mb_7.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mb_7.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/md_3.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/md_3.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mf_4.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mf_4.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mg_8.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mg_8.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/minfo_14.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/minfo_14.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mr_9.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mr_9.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mx_15.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/mx_15.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/naptr_35.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/naptr_35.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nid_104.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nid_104.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ninfo_56.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ninfo_56.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ns_2.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ns_2.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec3_50.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec3_50.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec3param_51.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec3param_51.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec_47.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nsec_47.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/null_10.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/null_10.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nxt_30.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/nxt_30.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/openpgpkey_61.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/openpgpkey_61.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/opt_41.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/opt_41.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/proforma.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/proforma.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ptr_12.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ptr_12.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rkey_57.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rkey_57.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rp_17.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rp_17.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rrsig_46.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rrsig_46.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rt_21.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/rt_21.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sig_24.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sig_24.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sink_40.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sink_40.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/smimea_53.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/smimea_53.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/soa_6.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/soa_6.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/spf_99.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/spf_99.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sshfp_44.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/sshfp_44.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ta_32768.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ta_32768.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/talink_58.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/talink_58.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/tkey_249.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/tkey_249.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/tlsa_52.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/tlsa_52.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/txt_16.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/txt_16.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/uri_256.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/uri_256.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/x25_19.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/x25_19.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/zonemd_63.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/zonemd_63.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/hs_4/a_1.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/hs_4/a_1.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/a6_38.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/a6_38.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/a_1.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/a_1.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/aaaa_28.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/aaaa_28.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/apl_42.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/apl_42.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/atma_34.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/atma_34.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/dhcid_49.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/dhcid_49.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/eid_31.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/eid_31.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/https_65.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/https_65.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/kx_36.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/kx_36.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nimloc_32.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nimloc_32.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nsap-ptr_23.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nsap_22.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/nsap_22.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/px_26.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/px_26.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/srv_33.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/srv_33.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/svcb_64.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/svcb_64.h up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/wks_11.c up to 1.1
external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/wks_11.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/context.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/dnsconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/netdb.h.in up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/platform.h.in up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/resconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/types.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/irs/version.h up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/Kyuafile    up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/context.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/dnsconf.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/gai_strerror.c up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/getaddrinfo.c up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/getnameinfo.c up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/resconf.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/irs/version.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/aes.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/app.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/assertions.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/astack.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/atomic.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/backtrace.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/barrier.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/base32.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/base64.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/bind9.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/buffer.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/bufferlist.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/cmocka.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/commandline.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/counter.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/crc64.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/deprecated.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/endian.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/errno.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/error.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/event.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/eventclass.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/file.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/formatcheck.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/fsaccess.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/fuzz.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/hash.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/heap.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/hex.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/hmac.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/ht.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/httpd.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/interfaceiter.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/iterated_hash.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/lang.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/lex.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/lfsr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/lib.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/likely.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/list.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/log.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/magic.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/managers.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/md.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/mem.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/meminfo.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/mutexblock.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/netaddr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/netmgr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/netscope.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/nonce.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/os.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/parseint.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/platform.h.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/pool.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/portset.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/print.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/quota.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/radix.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/random.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/ratelimiter.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/refcount.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/regex.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/region.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/resource.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/result.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/resultclass.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/rwlock.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/safe.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/serial.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/siphash.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/sockaddr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/socket.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/stats.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/stdio.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/strerr.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/string.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/symtab.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/task.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/taskpool.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/timer.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/tm.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/types.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/url.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/utf8.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/util.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/isc/version.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/constants.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/internal.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/pk11.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/result.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pk11/site.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pkcs11/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/include/pkcs11/pkcs11.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/Kyuafile    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/aes.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/app.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/assertions.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/astack.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/backtrace-emptytbl.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/backtrace.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/base32.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/base64.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/bind9.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/buffer.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/bufferlist.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/commandline.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/counter.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/crc64.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/entropy.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/entropy_private.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/error.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/event.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/fsaccess.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/hash.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/heap.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/hex.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/hmac.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/ht.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/httpd.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/iterated_hash.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/lex.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/lfsr.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/lib.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/lib_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/log.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/managers.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/md.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/mem.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/mem_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/mutexblock.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netaddr.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr_p.h  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netscope.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/nonce.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/openssl_shim.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/openssl_shim.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/parseint.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pk11.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pk11_result.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pool.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/portset.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/quota.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/radix.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/random.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/ratelimiter.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/regex.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/region.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/result.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/rwlock.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/safe.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/serial.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/siphash.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/sockaddr.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/stats.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/string.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/symtab.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/task.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/task_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/taskpool.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/timer.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/timer_p.h  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/tls.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/tls_p.h    up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/tm.c        up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/trampoline.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/trampoline_p.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/url.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/utf8.c      up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/version.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/xoshiro128starstar.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/netmgr-int.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/netmgr.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/tcp.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/tcpdns.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/udp.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/uv-compat.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/uv-compat.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/netmgr/uverr2result.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/isc/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/isc/condition.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/isc/mutex.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/isc/once.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/isc/thread.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/condition.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/mutex.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/pthreads/thread.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/align.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/dir.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/net.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/netdb.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/offset.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/stat.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/stdatomic.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/stdtime.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/syslog.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/time.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/dir.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/errno.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/errno2result.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/errno2result.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/file.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/fsaccess.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/ifiter_getifaddrs.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/interfaceiter.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/meminfo.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/net.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/os.c  up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/pk11_api.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/resource.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/socket.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/socket_p.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/stdio.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/stdtime.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/syslog.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isc/unix/time.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/aclconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/cfg.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/dnsconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/grammar.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/kaspconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/log.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/namedconf.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/isccfg/version.h up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/include/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/Kyuafile up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/Makefile.in up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/aclconf.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/dnsconf.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/kaspconf.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/log.c    up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/namedconf.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/parser.c up to 1.1
external/mpl/dhcp/bind/dist/lib/isccfg/version.c up to 1.1
external/mpl/dhcp/bind/dist/version            up to 1.1
external/mpl/dhcp/bind/Makefile                up to 1.1
external/mpl/dhcp/bind/Makefile.inc            up to 1.1
external/mpl/dhcp/bind/include/dns/enumclass.h  up to 1.1
external/mpl/dhcp/bind/include/dns/code.h      up to 1.1
external/mpl/dhcp/bind/include/dns/enumtype.h  up to 1.1
external/mpl/dhcp/bind/include/dns/rdatastruct.h up to 1.1
external/mpl/dhcp/bind/include/irs/netdb.h      up to 1.1
external/mpl/dhcp/bind/include/irs/platform.h  up to 1.1
external/mpl/dhcp/bind/include/config.h        up to 1.1
external/mpl/dhcp/bind/include/isc/atomic.h    up to 1.1
external/mpl/dhcp/bind/include/isc/platform.h  up to 1.1
external/mpl/dhcp/bind/include/isc/stdatomic.h  up to 1.1
external/mpl/dhcp/bind/lib/libdns/Makefile      up to 1.1
external/mpl/dhcp/bind/lib/Makefile            up to 1.1
external/mpl/dhcp/bind/lib/Makefile.inc        up to 1.1
external/mpl/dhcp/bind/lib/libirs/Makefile      up to 1.1
external/mpl/dhcp/bind/lib/libisc/Makefile      up to 1.1
external/mpl/dhcp/bind/lib/libisc/isc.map      up to 1.1
external/mpl/dhcp/bind/lib/libisccfg/Makefile  up to 1.1
external/mpl/dhcp/Makefile                      up to 1.2
external/mpl/dhcp/Makefile.inc                  up to 1.13
external/mpl/dhcp/bin/relay/Makefile            up to 1.3
external/mpl/dhcp/bin/server/Makefile          up to 1.10
external/mpl/dhcp/lib/common/Makefile          up to 1.3
share/mk/bsd.prog.mk (apply patch)
doc/3RDPARTY (manually edited)

nsd(8): update to 4.8.0 (fixes various CVEs)
unbound(8): update to 1.19.1 (fixes various CVEs)
wpa_supplicant(8): fix CVE-2023-52160
dhcpd(8): decouple from bind version.

(martin)

2024-02-23 19:48:51 UTC netbsd-10 commitmail json YAML

2024-02-23 18:54:36 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #607):

sys/dev/pci/if_wm.c: revision 1.795
sys/dev/pci/if_wm.c: revision 1.796
sys/dev/pci/if_wm.c: revision 1.797
sys/dev/pci/if_wmreg.h: revision 1.131

wm(4): Add RQDPC(Receive Queue Drop Packet Count) to iqdrops.

The iqdrops counter should include not only MPC(Missed Packet Count)
but also RQDPC(Receive Queue Drop Packet Count). Same as ixgbe(4) and igc(4).

Note that the RQDPC is not currently counted because SRRCTL_DROP_EN
is not set.

wm(4): Drop frames if the RX descriptor ring has no room on multiqueue system.

Drop frames if the RX descriptor ring has no room. This is enabled only on
multiqueue system to avoid bad influence to other queues. The drop count
can be seen by the RQDPC counter (wmN rxqXXdrop evcnt).

wm(4): Fix compile error without WM_EVENT_COUNTERS.

(martin)

2024-02-23 18:45:46 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #606):

sys/dev/pci/if_wm.c: revision 1.794
sys/dev/pci/if_wm.c: revision 1.798

wm(4): Print RX packet buffer size.

wm(4): Fix upper 16bit of Image Unique ID(EtrackID).

Don't override uid1 variable while reading option ROM version
to print Image Unique ID correctly.

(martin)

2024-02-23 18:41:02 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #605):

sys/dev/pci/igc/if_igc.c: revision 1.12
sys/dev/pci/igc/if_igc.c: revision 1.13
sys/dev/pci/igc/igc_defines.h: revision 1.3
sys/dev/pci/igc/if_igc.c: revision 1.10
sys/dev/pci/igc/if_igc.c: revision 1.11

igc(4): Count iqdrops.

TODO: RQDPC should be visible via evcnt(9).

igc: Add missing igc_check_for_link() call.

It's required to set the collision distance, configure flow control
from the negotiated result and set the LTR thresholds.

With this change, ifconfig igcN show the flow control status correctly.

igc(4): Modify dmesg output of PHY and NVM info.
- Print PHY info first and then print NVM info.
- Remove debug output.

igc(4): Print EtrackID.

(martin)

2024-02-23 18:36:00 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #604):

sys/dev/pci/ixgbe/ixgbe.c: revision 1.349

ixgbe: Add QPRDC into iqdrops.

A receive packet might drop at two different locations.

One is the packet buffer that packets are received into the chip first.
If the packet buffer is overflowed, the MPC register is incremented.
It's currently added to iqdrops. It's no problem.

Another is descriptor ring(s). A packet from the packet buffer is DMA'ed
into main memory base on the descriptor ring. If the ring is full, the packet
is dropped and the QPRDC register is incremented. It should be added to
iqdrops but it was not done. Fix it.

Reported by ozaki-r@.

(martin)

2024-02-23 18:09:23 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #603):

tests/lib/libm/t_fenv.c: revision 1.14
tests/lib/libm/t_fenv.c: revision 1.15
lib/libm/arch/x86_64/fenv.c: revision 1.11

fenv(3): Add test for PR port-amd64/57949.

fenv(3): Fix fetestexcept to avoid side effects on trap state.

PR port-amd64/57949

(martin)

2024-02-23 18:07:24 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #602):

distrib/amd64/ramdisks/Makefile: revision 1.5

ramdisk-zfsroot: Enable build by default on amd64.
XXX Should maybe copy this to other ports like evbarm64 too.

PR port-amd64/57948

(martin)

2024-02-19 08:59:48 UTC netbsd-10 commitmail json YAML

2024-02-19 08:58:58 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #601):

sys/arch/vax/vsa/vsbus.c: revision 1.69
sys/arch/vax/vsa/ncr.c: revision 1.52

Fix SCSI tranfer corruption on VAXstation 3100/m30 (KA420) on netboot.

See my post on port-vax@ for details:
https://mail-index.netbsd.org/port-vax/2024/02/16/msg004866.html
and "go ahead!" from ragge@.

(martin)

2024-02-18 16:32:54 UTC netbsd-10 commitmail json YAML

2024-02-18 16:28:43 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #600):

sys/dev/tc/zskbd.c: revision 1.22

Fix another fatal typo that causes zskbd_cngetc() to stall as dzkbd.
Tested on my DEC 3000/300 and LK421.

(martin)

2024-02-18 16:25:25 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #599):

sys/arch/arm/broadcom/bcm53xx_eth.c: revision 1.44

Test sc->sc_soft_ih (not sc->sc_ih) to see if the soft interrupt got
established correctly.

From Mori Hiroki.

Fix some error recovery while I'm here.

(martin)

2024-02-18 16:19:57 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #597):

sys/arch/evbarm/conf/std.bcm53xx: revision 1.21
sys/arch/arm/broadcom/bcm53xx_eth.c: revision 1.43
sys/arch/arm/broadcom/bcm53xx_pax.c: revision 1.23

Define KERNEL_VOFFSET_RUNTIME=1 to fix build of BCM5301X and BCM56340

Fix non-DIAGNOSTIC build

(martin)

2024-02-17 16:17:17 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #596):

sys/dev/dec/dzkbd.c: revision 1.32
sys/dev/dec/lk201var.h: revision 1.8
sys/dev/dec/lk201_ws.c: revision 1.11

Fix a fatal typo that causes dzkbd_cngetc() to stall.

Use proper macro for return values and remove #if 0'ed out block.
Mostly from OpenBSD/vax. No binary changes.

(martin)

2024-02-17 16:07:38 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by shm in ticket #595):

libexec/utmp_update/utmp_update.c: revision 1.14

Check for non-printable characters in ut_host.

(martin)

2024-02-17 16:05:32 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by macallan in ticket #593):

sys/dev/ic/sti.c: revision 1.32

Make this work properly on PCI Visualize EG:
- use bus_space_*_stream() for all register accesses in order to avoid
  byte order conversion on PCI devices
- when switching to framebuffer mode, request as many text planes as STI allows
- request access to both text and non-text planes in fb mode

With this and the bus_space commit a few days ago I have usable X on my C360
and a PCI Visualize EG.

This needs testing on quite literally everything else.

(martin)

2024-02-17 16:02:23 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by macallan in ticket #592):

sys/arch/hppa/hppa/mainbus.c: revision 1.13
sys/arch/hppa/dev/elroy.c: revision 1.7
sys/arch/hppa/dev/dino.c: revision 1.17
sys/arch/hppa/include/bus_funcs.h: revision 1.2
sys/arch/hppa/include/bus_defs.h: revision 1.3

add missing bus_space_*_stream() methods instead of quietly aliasing them
to their potentially byte-swapping regular counterparts

ok skrll@

(martin)

2024-02-17 15:59:55 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by markd in ticket #591):

external/bsd/blocklist/bin/blocklistd.conf.5: revision 1.3
external/bsd/blocklist/bin/conf.c: revision 1.4
external/bsd/blocklist/bin/conf.c: revision 1.5
external/bsd/blocklist/bin/conf.c: revision 1.6
external/bsd/blocklist/etc/blocklistd.conf: revision 1.3

PR/57905: Mark Davies: blocklistd fails to parse ipv6 addresses.
fix typo

PR/57905: Mark Davies: handle empty string.

add an IPv6 example to blocklistd.conf(5)

add an IPv6 example to blocklistd.conf example file

(martin)

2024-02-17 15:50:20 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hans in ticket #590):

sys/arch/vax/vax/machdep.c: revision 1.197

Include leds.h to make /dev/leds work.

(martin)

2024-02-17 11:27:30 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by gutteridge in ticket #589):

sys/dev/usb/ehci.c: revision 1.322
sys/dev/usb/ehcireg.h: revision 1.39

avoid different struct type problem.

(martin)

2024-02-16 12:08:02 UTC netbsd-10 commitmail json YAML

2024-02-16 12:07:08 UTC netbsd-10 commitmail json YAML

2024-02-14 15:10:47 UTC netbsd-10 commitmail json YAML

2024-02-14 15:08:53 UTC netbsd-10 commitmail json YAML

2024-02-14 15:08:29 UTC netbsd-10 commitmail json YAML

Pull up the following revisions(s) (requested by martin in ticket #594):
usr.sbin/sysinst/label.c: revision 1.51

PR 57927: when comparing old and new partition state during renumbering,
ignore differences in the install target flag - the backend might have
flipped it off already to ensure only a single partition is marked
as install target.

(sborrill)

2024-02-06 12:38:53 UTC netbsd-10 commitmail json YAML

2024-02-06 12:37:08 UTC netbsd-10 commitmail json YAML

2024-02-06 12:34:48 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by rin in ticket #588):

sys/dev/pci/ppb.c: revision 1.75

ppb(4): Print out PCIe Gen5 link speed correctly

(martin)

2024-02-06 12:33:18 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #587):

sys/arch/evbppc/wii/dev/wiifb.c: revision 1.6

wiifb: Misc fixes.

Add a 16-pixel border on the top and bottom of the FB, and fix an error
path to properly blink the slot LED when the current video mode is not
supported.

(martin)

2024-02-06 12:30:23 UTC netbsd-10 commitmail json YAML

Note changes, requested by kre in ticket #586:

doc/3RDPARTY (manual edit)

Note tzdata update to 2024a

(martin)

2024-02-06 12:22:42 UTC netbsd-10 commitmail json YAML

Pull up the following, requested by kre in ticket #586:

external/public-domain/tz/dist/Makefile        up to 1.1.1.38
external/public-domain/tz/dist/NEWS            up to 1.1.1.45
external/public-domain/tz/dist/TZDATA_VERSION  up to 1.37
external/public-domain/tz/dist/africa          up to 1.1.1.33
external/public-domain/tz/dist/asia            up to 1.12
external/public-domain/tz/dist/australasia      up to 1.9
external/public-domain/tz/dist/checknow.awk    up to 1.1.1.2
external/public-domain/tz/dist/etcetera        up to 1.1.1.8
external/public-domain/tz/dist/europe          up to 1.1.1.39
external/public-domain/tz/dist/leap-seconds.list up to 1.7
external/public-domain/tz/dist/leapseconds      up to 1.7
external/public-domain/tz/dist/leapseconds.awk  up to 1.1.1.14
external/public-domain/tz/dist/northamerica    up to 1.1.1.35
external/public-domain/tz/dist/southamerica    up to 1.1.1.25
external/public-domain/tz/dist/theory.html      up to 1.1.1.19
external/public-domain/tz/dist/version          up to 1.12
external/public-domain/tz/dist/zishrink.awk    up to 1.1.1.9
external/public-domain/tz/dist/zonenow.tab      up to 1.1.1.2

Updated tzdata to 2024a

(martin)

2024-02-06 12:18:56 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #585):

sys/dev/usb/ehcireg.h: revision 1.38
sys/dev/usb/ehci.c: revision 1.321

Fix DMA sync flags in ehci_append_sqtd

Ensure proper alignment/padding of EHCI hardware descriptors.

These descriptor structs are embedded in structs that contain additional
context for software. With a non cache coherent device and non-padded
descriptors, the device may issue a read/modify/write past the end of
the descriptor, clobbering software state in the process. This was the
root cause of multiple crashes on evbppc with a non cache coherent EHCI.

(martin)

2024-02-06 12:16:26 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #584):

usr.bin/rpcinfo/rpcinfo.c: revision 1.38

Use IANA registerd service name "sunrpc" instead of "rpcbind".

(martin)

2024-02-04 11:29:46 UTC netbsd-10 commitmail json YAML

2024-02-04 11:20:15 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jdolecek in ticket #583):

sys/kern/uipc_socket.c: revision 1.308
sys/kern/uipc_syscalls.c: revision 1.211
sys/sys/socketvar.h: revision 1.168
sys/net/if_gre.c: revision 1.185

fix PIPE_SOCKETPAIR variant of pipe1() to apply correctly the 'flags'
passed when called via pipe2(2), fixing repeatable process hang during
compilation with 'gcc -pipe'

refactor fsocreate() to return the new socket and file pointers,
expect the caller to call fd_affix() once initialization is fully complete
use the new fsocreate() to replace the duplicate open-coded 'flags' handling
in makesocket() used for socketpair(2), and in the PIPE_SOCKETPAIR pipe1()
this also fixes lib/libc/sys/t_pipe2 pipe2_cloexec test to succeed
on PIPE_SOCKETPAIR kernel

fixes PR kern/55690

(martin)

2024-02-04 11:09:44 UTC netbsd-10 commitmail json YAML

2024-02-04 11:07:41 UTC netbsd-10 commitmail json YAML

Pull up the following, requested by mrg in ticket #582:

usr.bin/gzip/gzip.1                            up to 1.32
usr.bin/gzip/gzip.c                            up to 1.122
usr.bin/gzip/unlz.c                            up to 1.8
usr.bin/gzip/unpack.c                          up to 1.4

Sync usr.bin/gzip to HEAD to fix a few minor issues, including
PR 57858 and PR 57855.

(martin)

2024-02-04 11:04:11 UTC netbsd-10 commitmail json YAML

Apply patch, requested by tsutsui in ticket #581:

doc/CHANGES (apply patch)

Sync doc/CHANGES with doc/CHANGES.prev in HEAD.

(martin)

2024-02-04 10:59:54 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #580):

distrib/utils/embedded/files/creds_msdos: revision 1.6

properly quote arguments.

(martin)

2024-02-03 15:28:01 UTC netbsd-10 commitmail json YAML

2024-02-03 14:34:45 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #579):

etc/etc.vax/ttys: revision 1.11

Use "wsvt25" rather than "sun" for (commented out) wscons tty lines.

Note historically vax port seems to use "ttyw?" rather than common "ttyE?"
for wscons (wsdisplay) tty devices in ttys(5).

No particular comment on port-vax@:
https://mail-index.netbsd.org/port-vax/2024/01/thread1.html#004828

(martin)

2024-02-03 14:33:15 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #578):

etc/etc.vax/MAKEDEV.conf: revision 1.20

Make sure to create wscons devices on the default "MAKEDEV all" target.
Necessary to make the X.org server work on the default installation.

Proposed on port-vax@, and ok'ed by mrg@:
https://mail-index.netbsd.org/port-vax/2024/01/thread1.html#004828

(martin)

2024-02-03 14:31:38 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kre in ticket #577):

bin/sh/jobs.c: revision 1.119

PR bin/57894

For jobs -p for a non-job-control job, avoid just printing 0 (as
there is no process group pid) and instead output what we used to,
the pid of one of the processes in the job (usually the right one!)

(martin)

2024-02-03 14:23:33 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #576):

sys/dev/hdaudio/hdafg.c: revision 1.29

ignore NULL for hdaudio_audiodev in hdafg_freem

also guard against NULL in ad_{capture,playback}
observed during shutdown on Lenovo W510

(martin)

2024-02-03 14:17:03 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #574):

sys/dev/pci/agp_i810.c: revision 1.126

agp_i810(4): Use ipi(9) for chipset flush on all CPUs, not xcall(9).

i915 now calls into this with a spin lock held, so we have to use
ipi(9), which spin-waits for the other CPUs to complete, rather than
xcall(9), which may sleep-wait.

Fortunately, this is just to execute WBINVD on x86 (and if this code
ever runs on other architectures, which it probably doesn't, it'll be
a similar barrier instruction), so spinning to wait for that on all
CPUs isn't too costly.

PR kern/57878

(martin)

2024-02-03 14:15:01 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #573):

usr.sbin/postinstall/postinstall.in: revision 1.58

postinstall(8): Don't say /etc/openssl/certs.conf already exists.

It's confusing when all the other `postinstall fix' actions are
silent in the event they don't have anything to do.

PR install/57885

(martin)

2024-02-03 14:12:49 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #572):

external/mit/xf86-video-wsfb/dist/src/wsfb_driver.c: revision 1.49

Handle "LSBit is left" bitorder VRAM of smg(4) and qv(4) on VAXen.

Confirmed on smg(4) on my VAXstation 3100/30.

(martin)

2024-02-03 14:05:47 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #571):

distrib/sets/lists/xserver/md.alpha: revision 1.62
distrib/sets/lists/xdebug/md.sgimips: revision 1.18
distrib/sets/lists/xdebug/md.netwinder: revision 1.14
distrib/sets/lists/xdebug/md.alpha: revision 1.22
distrib/sets/lists/xdebug/md.vax: revision 1.16
distrib/sets/lists/xserver/md.vax: revision 1.28
distrib/sets/lists/xserver/md.sgimips: revision 1.70
distrib/sets/lists/xserver/md.netwinder: revision 1.48
distrib/sets/lists/xcomp/mi: revision 1.241

Put back xorg_server_ver=110 specific files lost in 21.1.3 updates.
Also fix syspkg names and reorder entries for readabilities.

Fixes "fail to load libfb.so" errors on X.org 1.10 server ports.
Ok'ed by mrg@ on tech-x11@:

https://mail-index.netbsd.org/tech-x11/2024/01/24/msg002434.html

(martin)

2024-02-03 12:56:02 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #569):

sys/arch/vax/vsa/smg.c: revision 1.66

Fix mmap(2) address for smg(4) as other framebuffers.

Now X.org server can render onto framebuffer (but inverted bitorder).

(martin)

2024-02-03 12:48:39 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #568):

sys/arch/hppa/hppa/machdep.c: revision 1.19

Don't duplicate PIM_CPU_BITS in one printf.
PIM_CPU_HPMC_BITS already includes PIM_CPU_HPMC_BITS

(martin)

2024-02-03 12:46:19 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #567):

sys/arch/hppa/hppa/pim.h: revision 1.3

Fix one by one bugs I committed back in 2009.  Spotted by rillig@.

(martin)

2024-02-03 12:39:17 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #566):

sys/dev/sdmmc/ld_sdmmc.c: revision 1.43

ld@sdmmc(4): Hack around deadlock in cache sync on detach.

Yanking a card triggers the sdmmc discovery task, which runs in the
sdmmc task thread, to detach any attached child devices.

Detaching ld@sdmmc triggers a cache flush (via ldbegindetach ->
disk_begindetach -> ld_lastclose -> ld_flush -> ioctl DIOCCACHESYNC),
which is implemented by scheduling a task to do sdmmc_mem_flush_cache
and then waiting for it to complete.

The sdmmc_mem_cache_flush is done by an sdmmc task so it happens
after all previously scheduled I/O operations -- that way the cache
flush doesn't complete until the previously scheduled I/O operations
are complete.

However, when the cache flush task is issued from the discovery task,
this doesn't work, because the cache flush task can't start until the
discovery task has returned -- but the discovery task won't return
until the cache flush task has completed.

To work around this deadlock, which usually happens only when the
device has been yanked anyway so further I/O would be lost anyway,
just do the cache flush synchronously in DIOCCACHESYNC if we're
running in the task thread.

This isn't quite right -- implementation details of the task thread
shouldn't bleed into ld@sdmmc, and running the cache sync _before_
any subsequently scheduled I/O tasks is asking for trouble -- but it
should serve to avoid the deadlock in PR kern/57870 until we can fix
a host of concurrency bugs in sdmmc by fixing the locking scheme and
running discovery in a separate thread from tasks.

(martin)

2024-02-03 12:09:07 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #565):

sbin/blkdiscard/blkdiscard.c: revision 1.2
sbin/blkdiscard/blkdiscard.c: revision 1.3
sbin/blkdiscard/blkdiscard.8: revision 1.3

determine the tty width instead off writing 100 chars before a new line.

blkdiscard: avoid asserting when passed a bsd disklabel raw device

PR#57856 shows when using blkdiscard on eg, /dev/ld0 it asserts because
'0' is not between 'a' and 'p'.  switch this to using DISKPART() on the
returned st_rdev, so it works on 'ld0c' or 'ld0' (rawpart=2.)

(martin)

2024-02-03 12:01:59 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #564):

sys/dev/pci/if_wm.c: revision 1.793

Add Intel I219-{LM,V}(20,21) support.

(martin)

2024-02-03 11:58:53 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #563):

sys/dev/pci/ixgbe/ix_txrx.c: revision 1.110
sys/dev/pci/ixgbe/ixgbe.c: revision 1.345
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.111
sys/dev/pci/ixgbe/ixgbe.c: revision 1.346
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.112
sys/dev/pci/ixgbe/ixgbe_type.h: revision 1.62
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.113
sys/dev/pci/ixgbe/ixgbe.c: revision 1.348
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.114
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.115
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.116
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.105
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.106
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.107
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.108
sys/dev/pci/ixgbe/ix_txrx.c: revision 1.109
sys/dev/pci/ixgbe/ixv.c: revision 1.193
sys/dev/pci/ixgbe/ixv.c: revision 1.195
sys/dev/pci/ixgbe/ixv.c: revision 1.196
sys/dev/pci/ixgbe/ixgbe.h: revision 1.94
sys/dev/pci/ixgbe/ixgbe.h: revision 1.95
sys/dev/pci/ixgbe/ixgbe.h: revision 1.96
sys/dev/pci/ixgbe/ixgbe.h: revision 1.97
sys/dev/pci/ixgbe/ixgbe.h: revision 1.98

ixgbe: Fix comment. No functional change.
ixgbe: Whitespace. No functional change.
ixgbe(4): Move assignment of TXD. NFCI.
ixgbe(4): Modify comment. No functional change.
ixgbe_tx_ctx_setup() may or may not consume one TX descriptor.
ixv(4): Remove unused IFF_OACTIVE. No functional change.
ixgbe: Clear the WTHRESH bit field before writing it.
ixgbe: Modify for the readability. No functional change.
ixgbe: micro-optimize ixgbe_txeof()
Update txr->tx_avail and txr->txr_no_space outside the loop in ixgbe_txeof().
ixgbe: Update if_opackets outside the loop in ixgbe_txeof().
ixgbe: micro-optimize ixgbe_txeof()
Update txr->packets outside the loop in ixgbe_txeof().
ixgbe: Use #ifdef IXGBE_FDIR more
Don't include the Flow Director related members to reduce the size of
struct tx_ring. On amd64 and aarch64, the real size is not changed
because of the alignment.
ixgbe: Simplify. No functional change.
The descriptor ring size and the alignment are tested in the attach
function, so it's not required to use roundup2(size, DBA_ALIGN).
ixgbe: Use kmem_zalloc() instead of malloc(,M_ZERO).
ixgbe: Remove unused to reduce the size of struct rx_ring.
ixgbe: Use #ifdef LRO more to reduce the size of struct rx_ring.
ixgbe: Change "me" from 32bit to 8bit because the max is 128.
This commit doesn't change the real size of ix_queue, tx_ring and rx_ring
because of the alignment.
ixgbe: Use #ifdef RSC
This feature (hardware receive side coalescing) has been disabled all along,
so enclose the code with #ifdef RSC.

(martin)

2024-02-03 11:49:31 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #562):

external/mit/xf86-video-wsfb/dist/src/wsfb_driver.c: revision 1.48
external/mit/xf86-video-wsfb/dist/src/wsfb.h: revision 1.11

xf86-video-wsfb: Add support for Nintendo Wii

The Wii's framebuffer is YUY2, so add a custom shadowproc that converts
from RGB565 to YUY2 on the fly.

(martin)

2024-02-03 11:47:08 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #561):

etc/etc.evbppc/Makefile.inc: revision 1.15
sys/arch/evbppc/wii/dev/wiifb.c: revision 1.1
sys/arch/evbppc/wii/dev/wiifb.c: revision 1.2
sys/arch/evbppc/wii/dev/bwdsp.c: revision 1.1
sys/arch/evbppc/wii/dev/wiifb.c: revision 1.3
sys/arch/evbppc/wii/dev/bwdsp.c: revision 1.2
distrib/utils/embedded/files/evbppc_wii_icon.png: revision 1.1
usr.sbin/sysinst/arch/evbppc/md.h: revision 1.4
sys/arch/evbppc/wii/dev/wiifb.c: revision 1.4
sys/arch/evbppc/wii/dev/viio.h: revision 1.1
sys/arch/evbppc/wii/dev/wiifb.c: revision 1.5
sys/arch/evbppc/wii/dev/mainbus.h: revision 1.1
distrib/utils/embedded/conf/wii.conf: revision 1.1
distrib/utils/embedded/conf/wii.conf: revision 1.2
distrib/utils/embedded/conf/wii.conf: revision 1.3
sys/dev/sdmmc/sdhcvar.h: revision 1.34
sys/dev/sdmmc/sdhc.c: revision 1.118
sys/arch/evbppc/wii/dev/resetbtn.c: revision 1.1
distrib/utils/embedded/conf/evbppc.conf: revision 1.1
sys/dev/wsfb/genfb.c: revision 1.91
sys/arch/evbppc/wii/dev/resetbtn.c: revision 1.2
sys/dev/wscons/wsconsio.h: revision 1.127
sys/arch/powerpc/oea/oea_machdep.c: revision 1.85
sys/arch/evbppc/wii/dev/hollywood.h: revision 1.1
sys/arch/evbppc/conf/std.wii: revision 1.1
sys/arch/evbppc/wii/dev/hollywood.h: revision 1.2
sys/arch/evbppc/wii/dev/hollywood.c: revision 1.1
sys/arch/evbppc/conf/std.wii: revision 1.2
sys/arch/evbppc/wii/dev/hollywood.c: revision 1.2
sys/arch/evbppc/conf/std.wii: revision 1.3
sys/arch/powerpc/oea/cpu_subr.c: revision 1.109
sys/arch/evbppc/wii/wii_mmuinit.S: revision 1.1
sys/dev/usb/usb.h: revision 1.124
sys/arch/evbppc/wii/machdep.c: revision 1.1
sys/arch/evbppc/wii/dev/rtcsram.c: revision 1.1
sys/arch/powerpc/include/oea/hid.h: revision 1.14
sys/arch/evbppc/wii/mainbus.c: revision 1.1
sys/arch/evbppc/wii/machdep.c: revision 1.2
sys/arch/evbppc/wii/dev/ehci_hollywood.c: revision 1.1
sys/arch/evbppc/wii/mainbus.c: revision 1.2
sys/arch/evbppc/wii/machdep.c: revision 1.3
sys/arch/evbppc/wii/dev/ehci_hollywood.c: revision 1.2
sys/arch/evbppc/wii/mainbus.c: revision 1.3
sys/arch/evbppc/wii/machdep.c: revision 1.4
sys/arch/evbppc/wii/dev/hwgpio.c: revision 1.1
sys/arch/evbppc/wii/dev/sdhc_hollywood.c: revision 1.1
sys/arch/evbppc/wii/dev/sdhc_hollywood.c: revision 1.2
sys/arch/evbppc/wii/wii_locore.S: revision 1.1
sys/arch/evbppc/conf/files.wii: revision 1.1
sys/arch/evbppc/wii/wii_locore.S: revision 1.2
sys/arch/evbppc/include/wii.h: revision 1.1
sys/arch/evbppc/conf/files.wii: revision 1.2
sys/arch/evbppc/wii/dev/exi.c: revision 1.1
sys/arch/evbppc/include/wii.h: revision 1.2
sys/arch/evbppc/conf/files.wii: revision 1.3
sys/arch/powerpc/powerpc/clock.c: revision 1.18
sys/arch/evbppc/include/wii.h: revision 1.3
sys/arch/evbppc/conf/files.wii: revision 1.4
sys/arch/evbppc/include/wii.h: revision 1.4
sys/arch/evbppc/wii/dev/exi.h: revision 1.1
sys/arch/evbppc/wii/dev/avenc.c: revision 1.1
sys/arch/evbppc/include/wii.h: revision 1.5
sys/arch/evbppc/include/wii.h: revision 1.6
sys/arch/evbppc/include/wii.h: revision 1.7
sys/arch/evbppc/wii/dev/avenc.h: revision 1.1
distrib/utils/embedded/mkimage: revision 1.79
sys/arch/evbppc/conf/WII: revision 1.1
sys/arch/evbppc/conf/INSTALL_WII: revision 1.1
distrib/utils/embedded/files/evbppc_wii_meta.xml: revision 1.1
sys/arch/evbppc/wii/dev/vireg.h: revision 1.1
sys/arch/evbppc/conf/WII: revision 1.2
distrib/utils/embedded/files/evbppc_wii_meta.xml: revision 1.2
sys/arch/evbppc/wii/dev/vireg.h: revision 1.2
sys/arch/evbppc/conf/WII: revision 1.3
sys/arch/evbppc/conf/WII: revision 1.4
usr.sbin/sysinst/arch/evbppc/md.c: revision 1.11
sys/arch/evbppc/wii/dev/ohci_hollywood.c: revision 1.1
sys/dev/usb/ehcivar.h: revision 1.52
sys/arch/evbppc/wii/pic_pi.c: revision 1.1
sys/arch/evbppc/wii/dev/ohci_hollywood.c: revision 1.2
etc/etc.evbppc/ttys: revision 1.8
sys/arch/evbppc/wii/dev/bwai.c: revision 1.1
sys/arch/evbppc/wii/dev/bwai.c: revision 1.2
sys/arch/evbppc/wii/dev/bwai.c: revision 1.3
sys/arch/evbppc/wii/autoconf.c: revision 1.1
sys/arch/evbppc/conf/Makefile.wii.inc: revision 1.1
sys/arch/evbppc/wii/dev/bwai.h: revision 1.1
sys/arch/evbppc/wii/autoconf.c: revision 1.2
sys/arch/evbppc/conf/Makefile.wii.inc: revision 1.2

powerpc: oea: Fix prefetchable mappings
Prefetchable mappings need PMAP_NOCACHE to get write-combine semantics.
powerpc: oea: Decode IBM750CL L2 cache information.
sdmmc: add support for optional delay after register write
wscons: Add HOLLYWOOD display and YUY2 pixel format types
wsfb: add support for optional "devcmap" property
A hardware driver can supply a pointer to a 16x 32-bit array to override
the default rasops device colour map in the "devcmap" property.
ehci: add EHCIF_32BIT_ACCESS flag to force 32-bit MMIO
fix comments: HID0 ICFI/DCFI are "flash invalidate", not "flush invalidate"
powerpc: fix delay for large (> ~5sec) values
When calculating the target timebase, promote '1000' on the RHS to ULL
to force 64-bit calculation, otherwise 'n * 1000' will overflow.
usb: increase USB_PORT_RESET_RECOVERY from 10ms to 20ms
I changed this from 250ms to 10ms back in 2021 based on a similar FreeBSD
change, but it seems to be a bit too aggressive for some platforms.
evbppc: Add initial support for the Nintendo Wii
wii: support RB_POWERDOWN
build fix: use dd with count=1 for compat with NetBSD dd(1)
wii: Add NTSC 480p support.
In addition to this, add VIIO_{GET,SET}REGS ioctl support to allow for
poking at video interface registers from userland. This is helpful for
debugging display issues.
wii: Add 128x48 icon to SD card image
wii: Fix a comment
wii: Add drivers for Broadway DSP and Audio interface.
0: [*] audio0 @ bwdsp0: Broadway DSP
      playback: 16, 2ch, 48000Hz
      record:  unavailable
      (P-) slinear_be 16/16, 2ch, { 48000 }
wii: Add screenblank support.
wii: Use screen dimming register for screen blanking.
wii: Add GPIO, I2C, and basic A/V encoder driver.
wii: Use A/V encoder volume controls instead of using a software filter.
wii: Simply DSP driver - no interrupt handler required.
wii: provide device names to intr_establish
wii$ intrctl list
interrupt id      CPU0  device name(s)
pi irq 14        64769* hollywood0
hollywood irq 36  5872* ehci0
hollywood irq 39 58907* sdhc0
hollywood irq 40    4* sdhc1
hollywood irq 49    0* resetbtn0
pi irq 5            0* bwai0
wii: Add support for passing boot options to the kernel.
wii: Add External interface bus and RTC support
wii: Remove objcopy after kernel build.
HBC will do the right thing.
Add wsvt25 entries (off by default) for ttyE0-ttyE3.
Add support for "PAL" (576i) mode on Wii.

(martin)

2024-02-03 11:20:32 UTC netbsd-10 commitmail json YAML

2024-02-03 11:19:21 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #560):

sys/dev/pci/pcidevs: revision 1.1499
sys/dev/pci/pcidevs: revision 1.1500
sys/dev/pci/pcidevs: revision 1.1501
sys/dev/pci/pcidevs: revision 1.1502

add some newer Areca boards in prep for updating driver
Add Intel C26[26] eSPI.
Update Intel Raptor Lake devices.
Add Intel I219-{LM,V}(20,21)
add some newer Areca boards in prep for updating driver
Add Intel C26[26] eSPI.
Update Intel Raptor Lake devices.
Add Intel I219-{LM,V}(20,21)

(martin)

2024-02-03 11:15:12 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #559):

sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_stolen.c: revision 1.6
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_stolen.c: revision 1.7
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_pages.c: revision 1.7
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_phys.c: revision 1.9
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_mman.c: revision 1.22
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_region.c: revision 1.5
sys/external/bsd/drm2/dist/drm/i915/gem/i915_gem_region.c: revision 1.6

i915_gem_region: Reduce diff from upstream a little.
No functional change intended.
Prompted by upcoming nearby changes related to PR kern/57833.

i915_gem: Avoid walking off end of sg_pgs.
sg_npgs currently fails to match obj->base.size/PAGE_SIZE only due to
bugs in the construction of sg_pgs in various i915 gem object types,
which we should also fix, but let's avoid compounding it here.
Related to PR kern/57833.

i915_gem: Assert page array size.
Let's detect the bug of sg_npgs failing to match
obj->base.size/PAGE_SIZE earlier.
Related to PR kern/57833.

i915_gem_phys: Fill sg_pgs.
This is needed by i915 gem fault, which maps user virtual addresses
to those pages, and by i915 gem object destruction, which does
pmap_page_protect on the pages to remove any of those user virtual
mappings.
This needs pmap_kenter_pa rather than pmap_enter(pmap_kernel(), ...)
in order to preserve the _kernel's_ mapping of the pages after
pmap_page_protect.
But bus_dmamem_map currently uses pmap_enter(pmap_kernel(), ...)
instead which creates a mapping that is removed by pmap_page_protect.
So we use a variant of bus_dmamem_map that uses pmap_kenter_pa
instead.  Perhaps bus_dmamem_map should do this itself, but this
change is less risky to pull up than a change to bus_dmamem_map
itself.
PR kern/57833: kernel panic on xorg exit

i915_gem_region: Fill sg_pgs, with size/PAGE_SIZE entries.
Use sg_alloc_table_from_bus_dmamem to do this.
i915_gem_mman.c vm_fault_cpu and i915_gem_object_release_mmap_offset
both rely on sg_pgs to be a page array, so using something else like
size >> ilog2(mem->mm.chunk_size) entries doesn't work.  And they
rely on the sg_pgs entries to be initialized, which we weren't doing
before, and which sg_alloc_table_from_bus_dmamem does for us.
Related to PR kern/57833.

i915_gem_stolen: Fix memory leak.
Found while trying to address the PR 57833 class of problems.

i915_gem_stolen: Fill sg_pgs, with size/PAGE_SIZE entries.
Use sg_alloc_table_from_bus_dmamem to do this.

i915_gem_mman.c vm_fault_cpu and i915_gem_object_release_mmap_offset
both rely on sg_pgs to be a page array, so providing a table with
only one entry doesn't work (except by accident, if the object is
page-sized anyway).  And they rely on the sg_pgs entries to be
initialized, which we weren't doing before, and which
sg_alloc_table_from_bus_dmamem does for us.
Related to PR kern/57833.

(martin)

2024-02-02 18:29:18 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by uwe in ticket #558):

sys/arch/macppc/conf/GENERIC: revision 1.378

macppc: enable FFS_EI in GENERIC

I'd say it should be enabled for anything with USB.

ok macallan

(martin)

2024-02-02 18:27:51 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #557):

sys/arch/vax/conf/files.vax: revision 1.127

Add missed "rasops1" attribute to smg(4) rasops'fied a year ago.

This fixes silent boot failure on VS3100 with smg(4) framebuffer console.

(martin)

2024-01-16 08:28:51 UTC netbsd-10 commitmail json YAML

2024-01-16 08:28:00 UTC netbsd-10 commitmail json YAML

2024-01-16 08:25:48 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by andvar in ticket #556):

sys/arch/arm/imx/imx23_usb.c: revision 1.7

Fix imx23_usb_init() function declaration, it expects two parameters.

Fixes build for IMX23_OLINUXINO kernel config.

(martin)

2024-01-15 16:13:10 UTC netbsd-10 commitmail json YAML

2024-01-15 16:12:08 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #555):

usr.bin/ftp/fetch.c: revision 1.237
usr.bin/ftp/fetch.c: revision 1.238

Fix HTTPS through Proxy.

While a regular HTTP Proxy, requires the absolute URL with protocol
and host part, yyou must only send the relative URL through a
CONNECT tunnel (you are talking to the target server).

Don't finish downloading an empty file with 'already done' before it is
created locally.

(martin)

2024-01-15 14:17:04 UTC netbsd-10 commitmail json YAML

2024-01-15 14:15:55 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tnn in ticket #554):

sys/uvm/uvm_physseg.c: revision 1.20
sys/uvm/uvm_pglist.c: revision 1.91
sys/uvm/uvm_pglist.c: revision 1.92
sys/uvm/uvm_physseg.h: revision 1.9

uvm: change type of uvm_physseg.start_hint from u_int to u_long
Avoids assertion failure in uvm_pglistalloc_s_ps() with large paddrs.
PR kern/57683.

fix DEBUG build

(martin)

2024-01-15 14:13:40 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #553):

sys/external/bsd/drm2/dist/drm/i915/i915_pci.c: revision 1.5

i915: Backport change to downgrade gen7/vlv to aliasing-ppggtt.
PR kern/57268

commit 4fbe112a569526e46fa2accb5763c069f78cb431
Author: Chris Wilson <chris%chris-wilson.co.uk@localhost>
Date:  Mon Feb 24 10:11:20 2020 +0000
    drm/i915/gtt: Downgrade gen7 (ivb, byt, hsw) back to aliasing-ppgtt
    Full-ppgtt on gen7 is proving to be highly unstable and not robust.
    Closes: <a  rel="nofollow" href="https://gitlab.freedesktop.org/drm/intel/issues/694">https://gitlab.freedesktop.org/drm/intel/issues/694</a>
    Fixes: 3cd6e8860ecd ("drm/i915/gen7: Re-enable full-ppgtt for ivb & hsw")
    Signed-off-by: Chris Wilson <chris%chris-wilson.co.uk@localhost>
    Cc: Joonas Lahtinen <joonas.lahtinen%linux.intel.com@localhost>
    Cc: Rodrigo Vivi <rodrigo.vivi%intel.com@localhost>
    Cc: Jani Nikula <jani.nikula%intel.com@localhost>
    Cc: Dave Airlie <airlied%redhat.com@localhost>
    Acked-by: Rodrigo Vivi <rodrigo.vivi%intel.com@localhost>
    Link: https://patchwork.freedesktop.org/patch/msgid/20200224101120.4024481-1-chris%chris-wilson.co.uk@localhost

(martin)

2024-01-14 18:06:46 UTC netbsd-10 commitmail json YAML

2024-01-14 18:05:57 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #552):

sys/arch/vax/vax/machdep.c: revision 1.198

vax: set default RLIMIT_AS to the same as MAXDSIZ
this allows modern GCC to run without returning to the issues that
reported in PR#28379, and avoids a strange sort-of-invariant violation
where the rlimit for data equaled the rlimit for all address space, so
there is no room for text or stack etc.

ok ragge@

(martin)

2024-01-14 16:01:51 UTC netbsd-10 commitmail json YAML

2024-01-14 16:00:09 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #551):

distrib/notes/hp300/hardware: revision 1.27

Add three button trackballs (M1309A) to a supported HP-HIL device list.
Asked by Jonathan Stone on port-hp300@, and tested by me:
https://mail-index.netbsd.org/port-hp300/2024/01/14/msg000238.html

(martin)

2024-01-14 15:58:31 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #550):

sys/arch/sun3/conf/GENERIC: revision 1.191
sys/arch/sun3/conf/GENERIC: revision 1.192

Revert mistaken "no obmem0" that I added when enabling UFS_DIRHASH.
Thanks tsutsui@ for pointing this out.

Disable more several pseudo-devices to shrink binary size.
My 3/60 fails to boot from a SCSI disk without this change.
https://mail-index.netbsd.org/port-sun3/2024/01/13/msg000207.html

(martin)

2024-01-14 15:52:26 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hgutch in ticket #549):

sys/dev/usb/ums.c: revision 1.105

Add Microsoft Sculpt Wireless keyboard/mouse.
From M. Boerschig in PR 57845.

(martin)

2024-01-14 15:52:12 UTC netbsd-10 commitmail json YAML

2024-01-14 15:51:05 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by hgutch in ticket #549):

sys/dev/usb/usbdevs: revision 1.813

Add Microsoft Sculpt Wireless keyboard/mouse.
From M. Boerschig in PR 57845.

(martin)

2024-01-14 15:46:00 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by mlelstv in ticket #548):

sys/arch/i386/stand/efiboot/efidisk.h: revision 1.4
sys/arch/i386/stand/lib/exec.c: revision 1.80
sys/arch/i386/stand/efiboot/efidisk.c: revision 1.11
sys/arch/i386/stand/lib/biosdisk.c: revision 1.61

In efiboot
- create bootinfo information only once.
- add fake biosgeom entries so that the kernel can distinguish between
  hard drives (with geom) and CD-ROM (without).

(martin)

2024-01-14 15:43:45 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #547):

lib/libm/Makefile: revision 1.221 (patch)

libm: Add fma(3) and friends to m68k

(martin)

2024-01-14 15:39:08 UTC netbsd-10 commitmail json YAML

Apply patch, requested by riastradh in ticket #546:

tools/gdb/Makefile (apply patch)

gdb: Fix MKCROSSGDB=yes build on gcc>=11, which raises several
warnings that are fatal because the development snapshot of gdb
that netbsd-10 is about to ship with sets -Werror.  This addresses
PR misc/57841.

(martin)

2024-01-14 15:30:45 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #545):

external/bsd/iscsi/dist/src/lib/protocol.c: revision 1.5

libiscsi: Fix types of Time2Wait and Time2Retain in logout decap.

According to https://www.rfc-editor.org/rfc/rfc7143#section-11.15,
these are both 2-byte quantities.  Loading 4-byte quantities and
passing them through ISCSI_NTOHS might have worked by accident on
x86, but it's not gonna fly on big-endian.  (Fortunately sparc64 is
not just big-endian but also strict-alignment so it caught this
problem!)

XXX Is there an upstream for this code?  doc/3RDPARTY doesn't cite
any easily-followed references.

PR port-sparc64/57784

(martin)

2024-01-14 15:27:23 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #544):

lib/libc/inet/inet.3: revision 1.7

inet(3): Fix typo in description of size argument.

This is the size of dst, not of src.  The size of src is determined
by the address family.

Fix markup while here: .Fa for function arguments, not .Ar which is
for command arguments.

(martin)

2024-01-14 15:25:54 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by jdolecek in ticket #543):

sys/arch/xen/xen/if_xennet_xenbus.c: revision 1.130

disable TX checksum optimization, it's causing ARP lossage in some
configurations using Linux dom0

PR port-xen/57743 by Brian Marcotte, thanks for the patch

(martin)

2024-01-14 15:24:06 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #542):

sys/dev/pci/yds.c: revision 1.69
sys/dev/pci/cmpci.c: revision 1.61
sys/dev/pci/sv.c: revision 1.62
sys/dev/pci/fms.c: revision 1.50

mpu / opl: add an interface attribute to config_found() calls for these

specify an interface attribute when attaching mpu and opl devices.
the PCI devices that are the parents of these midi devices
(cmpci, eso, fms, sv, yds) have two interface attributes:
"audiobus", and also one named the same as the parent device,
eg. "cmpci" has an interface attribute named "cmpci".
we must specify the latter one to attach these children.

(martin)

2024-01-14 15:20:19 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #541):

sys/dev/pci/ips.c: revision 1.7

ips: fix a couple more device_t/softc split bugs

(martin)

2024-01-14 15:18:37 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #540):

sys/net/if_tun.c: revision 1.174

tun: add missing kpreempt_enable() if pktq_enqueue() fails

(martin)

2024-01-14 15:17:12 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #539):

distrib/sets/lists/comp/mi: revision 1.2452
share/man/man9/Makefile: revision 1.469

Install securelevel.9 as an alias of secmodel_securelevel.9
According to submitter, this should be sufficient to address misc/57824.

(martin)

2024-01-14 15:15:00 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by rin in ticket #538):

usr.bin/mklocale/yacc.y: revision 1.35
usr.bin/mklocale/yacc.y: revision 1.36
usr.bin/mklocale/mklocale.1: revision 1.18
usr.bin/mklocale/mklocale.1: revision 1.19

mklocale: XXX: Neglect TODIGIT at the moment
PR lib/57798

It was implemented with an assumption that all digit characters
can be mapped to numerical values <= 255.
This is no longer true for Unicode, and results in, e.g., wrong
return values of wcwidth(3) for U+5146 or U+16B60.

As a workaround, neglect TODIGIT for now, as done for OpenBSD:
https://github.com/OpenBSD/src/commit/4efe9bdeb34
XXX

At least netbsd-10 should be fixed, but it requires some tests.

mklocale(1): Add range check for TODIGIT, rather than disabling it
PR lib/57798

Digit value specified by TODIGIT is storaged as lowest 8 bits of
_RuneType, see lib/libc/locale/runetype_file.h:
https://nxr.netbsd.org/xref/src/lib/libc/locale/runetype_file.h#56

The symptom reported in the PR is due to missing range check for
this value; values of 256 and above were mistakenly treated as
other flag bits in _RuneType.

For example, U+5146 has numerical value 1000,000,000,000 ==
0xe8d4a51000 where __BITS(30, 31) == _RUNETYPE_SW3 are turned on.

This is why wcwidth(3) returned 3 for this character.

This apparently affected not only character width, but also other
attributes storaged in _RuneType.

IIUC, digit value attributes in _RuneType have never been utilized
until now, but preserve these if digit fits within (0, 256). This
should be safer for pulling this up into netbsd-10. Also, these
attributes may be useful to implement some I18N features as
suggested by uwe@ in the PR.

netbsd-[98] is not affected as these use old UTF-8 ctype definitions.

(martin)

2024-01-14 13:22:15 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #537):

usr.sbin/sysinst/arch/atari/md.c: revision 1.11

Fix a typo of a kernel name on detecting a running machine type.

(martin)

2024-01-14 13:19:39 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #536):

external/bsd/fetch/dist/libfetch/common.c: revision 1.6

fetch(3): Backport SSL validation from pkgsrc libfetch 2.40.

We should really sync with pkgsrc libfetch to avoid divergence, but
this is a low-risk, high-priority change for NetBSD 10:
https://mail-index.netbsd.org/pkgsrc-changes/2024/01/03/msg290052.html

(martin)

2024-01-14 13:15:05 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kre in ticket #535):

bin/sh/eval.c: revision 1.191
bin/sh/expand.c: revision 1.144

PR bin/57773

Fix a bug reported by Jarle Fredrik Greipsland in PR bin/57773,
where a substring expansion where the substring to be removed from
a variable expansion is itself a var expansion where the value
contains one (or more) of sh's CTLxxx chars - the pattern had
CTLESC inserted, the string to be matched against did not.  Fail.

We fix that by always inserting CTLESC in var assign expansions.
See the PR for all the gory details.

Thanks for the PR.

PR bin/57773

Fix another bug reported by Jarle Fredrik Greipsland and added
to PR bin/57773, which relates to calculating the length of a
positional parameter which contains CTL chars -- yes, this one
really is that specific, though it would also affect the special
param $0 if it were to contain CTL chars, and its length was
requested - that is fixed with the same change.  And note: $0
is not affected because it looks like a positional param (it
isn't, ${00} would be, but is always unset, ${0} isn't) all
special parame would be affected the same way, but the only one
that can ever contain a CTL char is $0 I believe.  ($@ and $*
were affected, but just because they're expanding the positional
params ... ${#@} and ${#*} are both technically unspecified
expansions - and different shells produce different results.

See the PR for the details of this one (and the previous).

Thanks for the PR.

(martin)

2024-01-14 13:02:27 UTC netbsd-10 commitmail json YAML

Pull up following revision(s) (requested by kim in ticket #534):

external/ibm-public/postfix/libexec/postfix-script/Makefile: revision 1.2
distrib/sets/lists/man/mi: revision 1.1768
external/ibm-public/postfix/man/man1/Makefile: revision 1.3
distrib/sets/lists/base/mi: revision 1.1330

Install postfix-tls-script (for "postfix tls")

(martin)

2024-01-01 14:04:53 UTC netbsd-10 commitmail json YAML

Ammend ticket #524 for additional changes (including move of RC2 tag)

(martin)

2024-01-01 14:00:17 UTC netbsd-10 commitmail json YAML

Additionally pull up following revision(s) (requested by rin in ticket #524):

sys/stand/efiboot/efinet.c: revision 1.9

MI efiboot: Revert "Stop using efi_bootdp after exclusive open for PXE"
http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/stand/efiboot/efinet.c#rev1.7

Some UEFI implementations pass multiple boot options as boot device path,
and NULL-clearing it results in boot failures.

Thanks skrll@ for pointing it out.

(martin)