Commit graph

2728 commits

Author SHA1 Message Date
Ondřej Surý
de23b20ccf Update copyrights and whitespace 2018-06-13 14:19:07 +02:00
Witold Kręcicki
7ec88b384d Add qname-minimization off as an option; test fixes 2018-06-12 10:24:05 +02:00
Evan Hunt
2ea47c7f34 rename test to qmin; add it to conf.sh.in and Makefile.in; fix copyrights 2018-06-12 09:18:47 +02:00
Witold Kręcicki
4f9c718803 qname minimization: fix tests 2018-06-12 09:18:47 +02:00
Witold Kręcicki
dd7bb617be - qname minimization:
- make qname-minimization option tristate {strict,relaxed,disabled}
 - go straight for the record if we hit NXDOMAIN in relaxed mode
 - go straight for the record after 3 labels without new delegation or 7 labels total

- use start of fetch (and not time of response) as 'now' time for querying cache for
  zonecut when following delegation.
2018-06-12 09:18:46 +02:00
Witold Kręcicki
0698158eb0 QNAME minimization 2018-06-12 09:18:46 +02:00
Ondřej Surý
b4aa7a9d7e Remove entropy.h from Makefile.in 2018-06-06 14:36:33 +02:00
Mark Andrews
0db5b087ed add duplicate signature test 2018-06-06 15:58:49 +10:00
Ondřej Surý
27593e65dc Remove support for obsoleted ECC-GOST (GOST R 34.11-94) algorithm 2018-06-05 09:14:14 +02:00
Ondřej Surý
cabf9ab27a Update git-replay-merge script to use gitlab CLI to push merge request automatically 2018-05-31 15:39:08 -04:00
Ondřej Surý
192f777ee8 Add backtrace_test and nsecify to bin/tests/optional/.gitignore 2018-05-31 12:06:51 +02:00
Evan Hunt
79bf79082b add PLATFORMS.md/PLATFORMS, for a supported platform list 2018-05-29 22:25:27 -04:00
Ondřej Surý
99ba29bc52 Change isc_random() to be just PRNG, and add isc_nonce_buf() that uses CSPRNG
This commit reverts the previous change to use system provided
entropy, as (SYS_)getrandom is very slow on Linux because it is
a syscall.

The change introduced in this commit adds a new call isc_nonce_buf
that uses CSPRNG from cryptographic library provider to generate
secure data that can be and must be used for generating nonces.
Example usage would be DNS cookies.

The isc_random() API has been changed to use fast PRNG that is not
cryptographically secure, but runs entirely in user space.  Two
contestants have been considered xoroshiro family of the functions
by Villa&Blackman and PCG by O'Neill.  After a consideration the
xoshiro128starstar function has been used as uint32_t random number
provider because it is very fast and has good enough properties
for our usage pattern.

The other change introduced in the commit is the more extensive usage
of isc_random_uniform in places where the usage pattern was
isc_random() % n to prevent modulo bias.  For usage patterns where
only 16 or 8 bits are needed (DNS Message ID), the isc_random()
functions has been renamed to isc_random32(), and isc_random16() and
isc_random8() functions have been introduced by &-ing the
isc_random32() output with 0xffff and 0xff.  Please note that the
functions that uses stripped down bit count doesn't pass our
NIST SP 800-22 based random test.
2018-05-29 22:58:21 +02:00
Evan Hunt
cb96608fd8 copyrights 2018-05-25 08:21:25 -07:00
Mark Andrews
c91770549f ensure there is a blank line before a changes entry and a release marker 2018-05-23 20:46:38 -04:00
Evan Hunt
9147a31b94 copyrights 2018-05-23 12:39:40 -04:00
Ondřej Surý
7ee8a7e69f address win32 build issues
- Replace external -DOPENSSL/-DPKCS11CRYPTO with properly AC_DEFINEd
  HAVE_OPENSSL/HAVE_PKCS11
- Don't enforce the crypto provider from platform.h, just from dst_api.c
  and configure scripts
2018-05-22 16:32:21 -07:00
Evan Hunt
999e3233f3 use the correct repository, and get archive by tag not hash 2018-05-21 13:43:49 -07:00
Ondřej Surý
2b8fab6828 Remove genrandom command and all usage of specific random files throughout the system test suite 2018-05-16 09:54:35 +02:00
Ondřej Surý
3a4f820d62 Replace all random functions with isc_random, isc_random_buf and isc_random_uniform API.
The three functions has been modeled after the arc4random family of
functions, and they will always return random bytes.

The isc_random family of functions internally use these CSPRNG (if available):

1. getrandom() libc call (might be available on Linux and Solaris)
2. SYS_getrandom syscall (might be available on Linux, detected at runtime)
3. arc4random(), arc4random_buf() and arc4random_uniform() (available on BSDs and Mac OS X)
4. crypto library function:
4a. RAND_bytes in case OpenSSL
4b. pkcs_C_GenerateRandom() in case PKCS#11 library
2018-05-16 09:54:35 +02:00
Ondřej Surý
55a10b7acd Remove $Id markers, Principal Author and Reviewed tags from the full source tree 2018-05-11 13:17:46 +02:00
Michał Kępień
1f10186476 Add a framework for dns__zone_updatesigs() unit tests
Add a new ATF test, sigs_test, containing everything required to start
defining test cases for dns__zone_updatesigs().  The framework is
written in a way which ensures that changes to zone database applied by
any dns__zone_updatesigs() invocation are preserved between subsequent
checks.
2018-05-09 13:32:09 +02:00
Michał Kępień
c1bc3be806 Add lib/dns/zone_p.h
Add a new private header file, lib/dns/zone_p.h, which will hold type
definitions and function prototypes not meant to be exported by libdns,
but required by zone-related unit tests.
2018-05-09 13:21:02 +02:00
Mark Andrews
0fedfcafb5 add bin/tests/system/rootkeysentinel/prereq.sh 2018-05-03 10:27:50 -04:00
Evan Hunt
bfbe6925df add header guard when generating bind.keys.h 2018-04-20 19:51:00 -04:00
Evan Hunt
784087390a remove the rbtdb64 database implementation 2018-04-20 16:14:51 -07:00
Evan Hunt
c592655c0f new option "dnskey-sig-validity"
- overrides "sig-validity-interval" for DNSKEY, CDNSKEY and CDS RRSIGs
2018-04-20 12:12:08 -07:00
Ondřej Surý
7f434f1005 Add basic clang-format configuration that match our current formatting style closest 2018-04-18 09:38:52 -07:00
Mark Andrews
a23b305e6b add system test for root-key-sentinel 2018-04-18 08:49:55 -07:00
Tony Finch
286a7b6b9a Allow TTL values when configuring TTLs and time intervals.
Options updated to use ttlvals: max-cache-ttl, max-ncache-ttl,
max-policy-ttl, fstrm-set-reopen-interval, interface-interval, and
min-update-interval.
2018-04-13 11:46:06 -07:00
Mukund Sivaraman
0d2a03c290 Add a dns_fixedname_initname() helper function
This also turns the dns_fixedname macros into functions.
2018-04-09 12:14:16 +02:00
Kevin Chen
8b1b809ab4 Add a Net::DNS prereq for digdelv, fetchlimit, rpzrecurse, and zero
tests to avoid failed tests when Net::DNS is not present.
2018-04-04 22:23:14 +02:00
Stephen Morris
6755118493 Initial set of IDNA tests. 2018-04-04 09:42:07 -04:00
Evan Hunt
6d9fb4e7e4 copyrights 2018-03-18 10:08:57 +00:00
Ondřej Surý
c34d76ed36 Remove idnkit-1.0 copy from BIND sources 2018-03-17 13:05:19 +00:00
Evan Hunt
0fabe0da83 update file headers 2018-03-15 18:33:13 -07:00
Evan Hunt
da4aa9b03f ensure COPYRIGHT file retains years; edit file headers for consistency 2018-03-15 18:32:29 -07:00
Ondřej Surý
c72ff6e008 Add a Feature Request template and remove the Security template as it was dup of text in Bug template 2018-03-15 00:13:47 +01:00
Evan Hunt
fccf8ca2f6 updated branchsync to deal with merge commits 2018-03-14 14:40:13 -07:00
Ondřej Surý
3686f141a3 Add Issue templates for Bug and Security 2018-03-14 04:25:22 -04:00
Evan Hunt
86e00cbb71 final cleanup
- update Kyuafiles to match Atffiles
- copyrights
- CHANGES note
2018-03-09 14:12:50 -08:00
Evan Hunt
d132f73497 remove lib/tests as nothing uses it anymore 2018-03-09 14:12:50 -08:00
Evan Hunt
a4ebe83cdb migrate t_dst signature test to lib/dns/tests/dst_test 2018-03-09 14:12:50 -08:00
Evan Hunt
f58ac8ada3 migrate t_db to lib/dns/tests/db_test 2018-03-09 14:12:49 -08:00
Evan Hunt
8ecf69ef7b migrate t_names to lib/dns/tests/name_test 2018-03-09 14:12:49 -08:00
Evan Hunt
109546cbda migrate t_rbt to lib/dns/tests/rbt_test 2018-03-09 14:12:49 -08:00
Evan Hunt
c6c1e99252 migrate t_tasks to lib/isc/tests/task_test 2018-03-09 14:12:49 -08:00
Evan Hunt
d80825c40b migrate t_resolver to lib/dns/tests/resolver_test 2018-03-09 14:12:49 -08:00
Evan Hunt
e2b8699df9 migrate t_timers to lib/isc/tests/timer_test 2018-03-09 14:12:49 -08:00
Evan Hunt
874e2fc70c migrate t_atomic to lib/isc/tests/atomic_test 2018-03-09 14:12:48 -08:00
Evan Hunt
979f054702 migrate t_mem to lib/isc/tests/mem_test 2018-03-09 14:12:48 -08:00
Evan Hunt
05b7251d51 migrate t_net to lib/isc/tests 2018-03-09 14:12:48 -08:00
Evan Hunt
62f650078a migrate t_sockaddr to lib/isc/tests 2018-03-09 14:12:48 -08:00
Evan Hunt
6ad1a042bc remove hashes test (duplicates lib/isc/tests/hash_test) 2018-03-09 14:12:48 -08:00
Evan Hunt
6717f31e10 remove master test (duplicates lib/isc/tests/master_test) 2018-03-09 14:12:48 -08:00
Evan Hunt
ccfe778c01 migrate tests from bin/tests/dnssec-signzone to bin/tests/system/dnssec
- added tests to the dnssec system test that duplicate the ones
  from bin/tests/dnssec-signzone
- changed cleanall.sh so it doesn't automatically remove all
  key files, because there are now some of those that are part of the
  distribution
2018-03-09 14:12:48 -08:00
Evan Hunt
a633f6c5dd remove some old and obsolete test files 2018-03-09 14:12:47 -08:00
Mark Andrews
88a2202093 update util/check-changes to handle non master branched (util/check-changes master=0 CHANGES) 2018-03-08 15:45:56 +11:00
Evan Hunt
c4cb99cf4a update copyrights 2018-03-07 18:02:53 -08:00
Evan Hunt
985d35f6b7 Set up CONTRIBUTING.md
- moved into place from doc/dev/contrib.md
- build CONTRIBUTING from CONTRIBUTING.md, like README and OPTIONS
2018-02-27 14:40:34 -08:00
Michał Kępień
f7fe1e3098 Add util/git-replay-merge.sh
git-replay-merge.sh is a script whose purpose is to make backporting
merge requests more convenient by automating the process as much as
possible.

For more information, including usage examples, see:

    https://gitlab.isc.org/isc-projects/bind9/wikis/Backporting-a-Merge-Request
2018-02-27 10:23:32 +01:00
Ondřej Surý
a11e23b5ed Replace all usage of inet_aton() with inet_pton() 2018-02-23 13:57:10 +01:00
Ondřej Surý
843d389661 Update license headers to not include years in copyright in all applicable files 2018-02-23 10:12:02 +01:00
Ondřej Surý
c8efcca408 Update scripts in util/ to drop the year information from the individual source files. 2018-02-23 10:10:52 +01:00
Ondřej Surý
996f5154f0 Revert removal of bin/tests/system/common/controls.conf, it's still needed 2018-02-23 10:08:37 +01:00
Ondřej Surý
ab1b02d274 Update copyright information after !59 merge. 2018-02-23 09:02:49 +01:00
Evan Hunt
0c559199bf final cleanup
- add CHANGES note
- update copyrights and license headers
- add -j to the make commands in .gitlab-ci.yml to take
  advantage of parallelization in the gitlab CI process
2018-02-22 22:58:15 -08:00
Ondřej Surý
c2c1e2531b Remove libseccomp based system-call filtering. 2018-02-22 13:41:06 +01:00
Tinderbox User
b3b3f9064c newcopyrights 2018-02-18 23:30:15 +00:00
Evan Hunt
ceeab84d6c [master] synchronize 2018-02-17 19:21:26 -08:00
Tinderbox User
033be0db8e newcopyrights 2018-02-15 23:30:12 +00:00
Mark Andrews
f181b30918 add POST(len); 2018-02-16 10:20:39 +11:00
Mark Andrews
2e83674170 conditionally declare stacksize 2018-02-16 10:20:39 +11:00
Mark Andrews
801cef9684 add POST(len); 2018-02-16 10:20:39 +11:00
Mark Andrews
99d02c6531 Clarify calculation precedence for '&' and '?' 2018-02-16 10:20:39 +11:00
Mark Andrews
a46e90b2b7 add POST(tl) 2018-02-16 10:20:39 +11:00
Mark Andrews
a0720c9e56 return failure count 2018-02-16 10:20:39 +11:00
Mark Andrews
0ec66f5e51 conditionally declare strbuf 2018-02-16 10:20:39 +11:00
Mark Andrews
acdecd4636 test for == 0 rather than <= as value is unsigned 2018-02-16 10:20:39 +11:00
Mark Andrews
ca6faad2b6 remove event which is only used for sizeof 2018-02-16 10:20:39 +11:00
Mark Andrews
4528297486 use %u instead of %d 2018-02-16 10:20:39 +11:00
Mark Andrews
8f8ce953ce use %u instead of %d 2018-02-16 10:20:39 +11:00
Mark Andrews
fc38731c85 use %u instead of %d 2018-02-16 10:20:39 +11:00
Mark Andrews
1eb1eaac94 use %u instead of %d 2018-02-16 10:20:39 +11:00
Mark Andrews
c7e848ce54 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
1cdb19eaae use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
e632696a6d case to unsigned; reorder expression 2018-02-16 10:20:38 +11:00
Mark Andrews
97d4a1eaf5 use %u and preserve unsigned property 2018-02-16 10:20:38 +11:00
Mark Andrews
78ad353491 preserve unsigned property 2018-02-16 10:20:38 +11:00
Mark Andrews
c23eef5ff1 make both arguments of & unsigned 2018-02-16 10:20:38 +11:00
Mark Andrews
4955c45c94 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
34a4d241c6 shift unsigned (~0U) rather than signed (~0) contant 2018-02-16 10:20:38 +11:00
Mark Andrews
75a291e541 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
dc3951c800 unsigned constants 2018-02-16 10:20:38 +11:00
Mark Andrews
9520cf8559 unsigned constants 2018-02-16 10:20:38 +11:00
Mark Andrews
eaddb0c686 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
b234797536 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
2b803b3463 prevent implict conversion to signed 2018-02-16 10:20:38 +11:00
Mark Andrews
4a3c1fb45e use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
7d375efaea INSIST ipnum6 != NULL 2018-02-16 10:20:38 +11:00
Mark Andrews
898d7e99a9 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
a8fa4a9e42 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
8aff92c150 formally cast to int 2018-02-16 10:20:38 +11:00
Mark Andrews
1af3e7d7d5 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
372fbc06e7 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
e247336199 use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
865115f30c use %u instead of %d 2018-02-16 10:20:38 +11:00
Mark Andrews
bbdd8e17d7 copyrights 2018-02-16 10:20:38 +11:00
Mark Andrews
c4ca99c0d1 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
5c017fd3f6 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
af7fd89305 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
f0981d9682 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
ee49362e33 make declarations consistent 2018-02-16 10:19:57 +11:00
Mark Andrews
6b74dcca71 report argument error in human form 2018-02-16 10:19:57 +11:00
Mark Andrews
4278230b33 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
4ec06278cc use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
c8d294470d use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
3034da1ec6 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
e08b3d3a48 use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
f9a9ff57ce use %u instead of %i 2018-02-16 10:19:57 +11:00
Mark Andrews
3fb7b9827a use %u instead of %d 2018-02-16 10:19:57 +11:00
Mark Andrews
ea8e149f4d use %u instead of %d 2018-02-16 10:19:57 +11:00
Evan Hunt
883a9485e9 [master] copyrights 2018-02-15 11:56:13 -08:00
Ondřej Surý
4ff2d36adc Remove whole unused ondestroy callback mechanism 2018-02-12 14:49:32 +01:00
Evan Hunt
313e73354d [master] copyrights 2018-02-10 16:30:21 -08:00
Tinderbox User
87083c7e9b newcopyrights 2018-02-08 23:30:12 +00:00
Tinderbox User
49c0a94f78 newcopyrights 2018-02-07 23:30:44 +00:00
Tinderbox User
0e9bcf0318 newcopyrights 2018-02-05 23:30:08 +00:00
Mark Andrews
4fcc550877 look for #! to determine if the file is PYTHON or PYTHON-BIN 2018-02-05 11:39:43 +11:00
Tinderbox User
b675979c68 newcopyrights 2018-02-01 23:30:07 +00:00
Tinderbox User
f8143baf1b newcopyrights 2018-01-31 23:30:16 +00:00
Tinderbox User
b847078b1e newcopyrights 2018-01-30 23:30:29 +00:00
Tinderbox User
13c14bc874 newcopyrights 2018-01-29 23:30:08 +00:00
Tinderbox User
f37b6e1434 newcopyrights 2018-01-25 23:30:11 +00:00
Mark Andrews
63440f61ae remove Bv9ARM.ch13.html 2018-01-25 11:00:55 +11:00
Tinderbox User
7fa465be5f newcopyrights 2018-01-24 23:30:06 +00:00
Tinderbox User
c6d2beca68 newcopyrights 2018-01-23 23:30:05 +00:00
Tinderbox User
3fda67b596 update copyright notice / whitespace 2018-01-22 23:46:02 +00:00
Tinderbox User
dc2add38f6 newcopyrights 2018-01-22 23:38:29 +00:00
Mark Andrews
7f4dfa539c doc/misc/*.zoneopt are X 2018-01-23 10:36:05 +11:00
Mark Andrews
54c4adef80 remove old entries 2018-01-22 11:25:54 +11:00
Tinderbox User
a2ca0077d5 newcopyrights 2018-01-21 23:30:50 +00:00
Tinderbox User
88fd438a0f newcopyrights 2018-01-20 23:30:04 +00:00
Tinderbox User
9b08b03769 newcopyrights 2018-01-19 23:30:05 +00:00
Tinderbox User
16bbe61f14 newcopyrights 2018-01-18 23:30:07 +00:00
Tinderbox User
05fce3ecc5 newcopyrights 2018-01-17 23:30:05 +00:00
Tinderbox User
2836a56729 newcopyrights 2018-01-16 23:30:03 +00:00
Tinderbox User
a9452918d5 newcopyrights 2018-01-15 23:30:03 +00:00
Tinderbox User
d9ee7a6345 newcopyrights 2018-01-13 23:30:04 +00:00
Tinderbox User
8b138db9eb newcopyrights 2018-01-12 23:30:03 +00:00
Tinderbox User
c189636ca9 newcopyrights 2018-01-11 23:30:03 +00:00
Tinderbox User
8be7acc624 newcopyrights 2018-01-10 23:30:08 +00:00
Tinderbox User
21401216aa newcopyrights 2018-01-09 23:30:01 +00:00
Tinderbox User
639534d5d6 newcopyrights 2018-01-08 23:30:02 +00:00
Tinderbox User
cd37694da8 newcopyrights 2018-01-05 23:30:01 +00:00
Tinderbox User
bcdf3ec450 newcopyrights 2018-01-04 23:30:09 +00:00
Tinderbox User
b415606012 newcopyrights 2018-01-03 23:30:01 +00:00
Tinderbox User
3483e91d8c newcopyrights 2018-01-02 23:30:02 +00:00
Tinderbox User
af5fb26180 newcopyrights 2018-01-01 23:30:04 +00:00
Tinderbox User
e55ecaf8d8 newcopyrights 2017-12-29 23:30:25 +00:00
Mark Andrews
fa0caa1f85 X Kyuafile's 2017-12-29 13:33:08 +11:00
Tinderbox User
9826bebc85 newcopyrights 2017-12-20 23:30:16 +00:00
Tinderbox User
376b1e8fec newcopyrights 2017-12-15 23:30:10 +00:00
Tinderbox User
8fc65f3954 newcopyrights 2017-12-13 23:30:15 +00:00
Tinderbox User
7491ce5c90 newcopyrights 2017-12-08 23:30:07 +00:00
Evan Hunt
c4f9d720eb [master] copyrights 2017-12-06 09:24:36 -08:00
Tinderbox User
cb056c84f3 newcopyrights 2017-12-05 23:30:13 +00:00
Tinderbox User
c912c10346 newcopyrights 2017-12-04 23:30:17 +00:00
Tinderbox User
79398706f4 newcopyrights 2017-12-03 23:30:10 +00:00
Evan Hunt
61c843815e [master] copyrights/whitespace 2017-11-30 14:51:50 -08:00
Tinderbox User
6cc3c22534 newcopyrights 2017-11-29 23:30:06 +00:00
Tinderbox User
9b1f74fa3a newcopyrights 2017-11-28 23:30:11 +00:00
Tinderbox User
393135d693 update copyright notice / whitespace 2017-11-27 23:46:24 +00:00
Tinderbox User
82354deeb1 newcopyrights 2017-11-27 23:30:10 +00:00
Mark Andrews
7bc5d7f5e8 4827. [misc] Add a precommit check script util/checklibs.sh
[RT #46215]
2017-11-27 13:47:36 +11:00
Mark Andrews
ba613d22bf remove bin/tests/system/reclimit/ans4/ans.pl 2017-11-23 12:09:23 +11:00
Tinderbox User
5b2b9340fe newcopyrights 2017-11-21 23:30:08 +00:00
Tinderbox User
6f5cc4206d newcopyrights 2017-11-13 23:30:10 +00:00
Tinderbox User
3300f6aeda newcopyrights 2017-11-06 23:30:12 +00:00
Evan Hunt
e7b53943fe [master] copyrights 2017-11-02 11:50:43 -07:00
Tinderbox User
0ed0c4b1a5 newcopyrights 2017-10-30 23:30:10 +00:00
Evan Hunt
45d4d62a0c [master] copyrights 2017-10-29 16:44:55 -07:00
Tinderbox User
63d83632d7 newcopyrights 2017-10-29 23:30:15 +00:00
Mark Andrews
4e2ba60f3c don't add copyright notices 2017-10-29 18:53:07 +11:00
Mark Andrews
01139573bc update copyrights 2017-10-28 10:56:21 +11:00
Mark Andrews
4cbaa08602 allow for numbered namedX.args 2017-10-28 10:53:20 +11:00
Evan Hunt
959d294067 [master] remove isc-hmac-fixup
4797.	[func]		Removed "isc-hmac-fixup", as the versions of BIND that
			had the bug it worked around are long past end of
			life. [RT #46411]
2017-10-27 09:56:11 -07:00
Mark Andrews
f808b5e0d2 .md for MKD 2017-10-27 10:40:32 +11:00
Tinderbox User
a4bf990ed7 newcopyrights 2017-10-26 23:30:10 +00:00
Evan Hunt
63270d33f1 [master] some improvements in doc/dev [RT #46011]
- add info about rdatasets, etc, to dev.md (thanks to Tony Finch)
- convert rdata.html to markdown
2017-10-25 23:30:10 -07:00
Mark Andrews
96ebb55501 update 2017-10-26 11:38:34 +11:00
Tinderbox User
89c95e7141 newcopyrights 2017-10-24 23:30:30 +00:00
Mark Andrews
3f2e5f840a update 2017-10-24 10:41:13 +11:00
Tinderbox User
bf9b90f977 newcopyrights 2017-10-19 23:30:21 +00:00
Tinderbox User
4f554c2445 newcopyrights 2017-10-17 23:30:15 +00:00
Tinderbox User
ebf5459c44 newcopyrights 2017-10-16 23:30:10 +00:00
Evan Hunt
a8496f51a8 [master] copyrights 2017-10-12 10:57:39 -07:00
Mark Andrews
b856e695d0 copyrights 2017-10-12 16:01:23 +11:00
Evan Hunt
d0c3272eaa [master] copyrights 2017-10-11 21:11:37 -07:00
Evan Hunt
025f606463 [master] copyrights 2017-10-11 17:08:21 -07:00
Tinderbox User
5414e48606 update copyright notice / whitespace 2017-10-09 23:45:53 +00:00
Tinderbox User
971503762e newcopyrights 2017-10-09 23:30:15 +00:00
Evan Hunt
c89f1bf1b6 [master] turn off memory fill by default
4768.	[func]		By default, memory is no longer filled with tag values
			when it is allocated or freed; this improves
			performance but makes debugging of certain memory
			issues more difficult. "named -M fill" turns memory
			filling back on. (Building "configure
			--enable-developer", turns memory fill on by
			default again; it can then be disabled with
			"named -M nofill".) [RT #45123]
2017-10-09 09:55:37 -07:00
Mark Andrews
42ed778b94 cleanup 2017-10-09 11:05:46 +11:00
Tinderbox User
3b5e75c07a update copyright notice / whitespace 2017-10-07 23:45:58 +00:00
Tinderbox User
2e3b69a800 newcopyrights 2017-10-07 23:30:20 +00:00
Mark Andrews
352185e9a8 map tat to trust-anchor-telemetry 2017-10-07 12:11:02 +11:00
Tinderbox User
81198ca4b8 newcopyrights 2017-10-06 23:30:23 +00:00
Tinderbox User
5f55e84a76 newcopyrights 2017-10-05 23:30:33 +00:00
Tinderbox User
653ca094e8 newcopyrights 2017-10-04 23:30:13 +00:00
Tinderbox User
0218bd7957 newcopyrights 2017-10-03 23:30:15 +00:00
Evan Hunt
f29359299a [master] de-DLV
4749.	[func]		The ISC DLV service has been shut down, and all
			DLV records have been removed from dlv.isc.org.
			- Removed references to ISC DLV in documentation
			- Removed DLV key from bind.keys
			- No longer use ISC DLV by default in delv
			[RT #46155]
2017-10-03 00:41:57 -07:00
Tinderbox User
bf50a60e39 newcopyrights 2017-09-29 23:30:10 +00:00
Tinderbox User
83b5464a1f newcopyrights 2017-09-28 23:30:08 +00:00
Tinderbox User
6d5608c14d newcopyrights 2017-09-27 23:30:08 +00:00
Evan Hunt
e02abf7ed8 [master] contrib: dns-over-tls sample configurations
4734.	[contrib]	Added sample configuration for DNS-over-TLS in
			contrib/dnspriv.
2017-09-22 15:11:44 -07:00
Mark Andrews
3148dee766 correct ./.gitattributes 2017-09-22 14:32:02 +10:00
Tinderbox User
83df1994f2 newcopyrights 2017-09-21 23:30:17 +00:00
Tinderbox User
39a967ff0e newcopyrights 2017-09-19 23:30:23 +00:00
Tinderbox User
a9631d156a newcopyrights 2017-09-18 23:30:32 +00:00
Mark Andrews
c3506e8d75 update copyrights 2017-09-18 13:30:46 +10:00
Tinderbox User
741fe699dc newcopyrights 2017-09-14 23:30:13 +00:00
Tinderbox User
603a4815b0 newcopyrights 2017-09-13 23:31:06 +00:00
Tinderbox User
7aa2965ab1 newcopyrights 2017-09-12 23:31:07 +00:00
Evan Hunt
a9dfb7ef6e [master] update copyrights, bump release tag 2017-09-11 22:06:05 -07:00
Mark Andrews
9dd9d36efd update 2017-09-12 12:47:50 +10:00
Evan Hunt
f3ce87e1a1 [master] copyrights 2017-09-11 17:01:09 -07:00
Tinderbox User
ee442df216 newcopyrights 2017-09-09 23:30:20 +00:00
Evan Hunt
8eb88aafee [master] add libns and remove liblwres
4708.   [cleanup]       Legacy Windows builds (i.e. for XP and earlier)
                        are no longer supported. [RT #45186]

4707.	[func]		The lightweight resolver daemon and library (lwresd
			and liblwres) have been removed. [RT #45186]

4706.	[func]		Code implementing name server query processing has
			been moved from bin/named to a new library "libns".
			Functions remaining in bin/named are now prefixed
			with "named_" rather than "ns_".  This will make it
			easier to write unit tests for name server code, or
			link name server functionality into new tools.
			[RT #45186]
2017-09-08 13:47:34 -07:00
Tinderbox User
eaad53d4c5 newcopyrights 2017-09-07 23:30:28 +00:00
Tinderbox User
28b644f5d6 newcopyrights 2017-09-06 23:30:50 +00:00
Tinderbox User
a09cf3ef4c newcopyrights 2017-09-04 23:30:44 +00:00
Mark Andrews
0996c94099 update 2017-09-01 09:46:01 +10:00
Mark Andrews
e8ff51eb3e update 2017-08-31 09:33:45 +10:00
Tinderbox User
67a9cf9fa7 newcopyrights 2017-08-29 23:30:19 +00:00
Tinderbox User
72ab5d8a69 newcopyrights 2017-08-24 23:30:17 +00:00
Tinderbox User
7c29eaf91a newcopyrights 2017-08-21 23:30:15 +00:00
Tinderbox User
0a8e5c9db7 newcopyrights 2017-08-17 23:30:30 +00:00
Tinderbox User
f034916801 newcopyrights 2017-08-15 23:30:14 +00:00
Tinderbox User
786b6c5517 newcopyrights 2017-08-14 23:30:11 +00:00
Tinderbox User
0acb21c354 newcopyrights 2017-08-09 23:30:11 +00:00
Tinderbox User
b03fb7992f newcopyrights 2017-08-09 00:14:29 +00:00
Mark Andrews
13053ff906 remove bin/tests/system/dnssec/ns4/named5.conf 2017-08-05 12:36:31 +10:00
Tinderbox User
925e261f56 newcopyrights 2017-08-04 23:30:11 +00:00
Tinderbox User
9fbaa4eec7 newcopyrights 2017-08-02 23:47:04 +00:00
Mark Andrews
b9e4835f4b remove bin/tests/rdata_test.c 2017-08-02 12:40:58 +10:00
Tinderbox User
b74e1c3b50 update copyright notice / whitespace 2017-08-01 23:46:29 +00:00
Tinderbox User
dadcb7dfb5 newcopyrights 2017-08-01 23:30:13 +00:00
Mark Andrews
433af1819b copyrights 2017-08-01 12:25:31 +10:00
Mark Andrews
3c4dffefe8 handle .key and .private files 2017-08-01 12:09:34 +10:00
Tinderbox User
9e627e30dc newcopyrights 2017-07-28 23:30:28 +00:00
Tinderbox User
3550c8b722 newcopyrights 2017-07-27 23:39:36 +00:00
Tinderbox User
1a711408a3 newcopyrights 2017-07-26 23:30:30 +00:00
Tinderbox User
fd0039f465 update copyright notice / whitespace 2017-07-24 23:46:35 +00:00
Tinderbox User
6eee89ec76 newcopyrights 2017-07-24 23:30:20 +00:00
Mark Andrews
803a5b767b add model for atf_tc_fail_requirement 2017-07-24 11:36:10 +10:00
Tinderbox User
bd9d540b9f newcopyrights 2017-07-21 23:30:17 +00:00
Tinderbox User
0fd278fc18 newcopyrights 2017-07-20 23:30:07 +00:00
Tinderbox User
c15d4d1104 newcopyrights 2017-07-19 23:30:10 +00:00
Tinderbox User
6518668d47 newcopyrights 2017-07-11 01:45:43 +00:00
Tinderbox User
9719af5633 newcopyrights 2017-07-09 23:30:09 +00:00
Tinderbox User
650c3552b8 newcopyrights 2017-07-07 23:30:11 +00:00
Tinderbox User
79a0b3ffbb newcopyrights 2017-06-30 23:30:08 +00:00
Tinderbox User
6f128cbfaa newcopyrights 2017-06-27 23:30:07 +00:00
Tinderbox User
21975873a3 newcopyrights 2017-06-26 23:30:08 +00:00
Mark Andrews
accadd4083 copyrights 2017-06-26 12:22:13 +10:00
Tinderbox User
d1b9016fc6 newcopyrights 2017-06-20 23:30:08 +00:00
Tinderbox User
a207bb09d1 newcopyrights 2017-06-13 23:30:15 +00:00
Tinderbox User
255f5ba5b2 newcopyrights 2017-06-11 23:30:06 +00:00
Tinderbox User
435aae69a5 newcopyrights 2017-06-08 23:30:05 +00:00
Tinderbox User
f6415812da newcopyrights 2017-06-02 23:30:05 +00:00
Tinderbox User
75f393cd82 newcopyrights 2017-05-30 23:30:05 +00:00
Tinderbox User
dce3c30a38 newcopyrights 2017-05-28 23:30:06 +00:00
Tinderbox User
fb6aedd450 newcopyrights 2017-05-24 23:30:06 +00:00
Evan Hunt
0221bfed7d [master] copyrights 2017-05-23 16:40:42 -07:00
Tinderbox User
f2fed3cba6 newcopyrights 2017-05-21 23:30:05 +00:00
Tinderbox User
1f12944920 newcopyrights 2017-05-11 23:30:05 +00:00
Tinderbox User
f0b35c7bef newcopyrights 2017-05-10 23:30:06 +00:00
Tinderbox User
d87a8b9662 newcopyrights 2017-05-08 23:30:04 +00:00
Tinderbox User
be7deefebd newcopyrights 2017-05-02 23:30:09 +00:00
Tinderbox User
bf551b79da newcopyrights 2017-05-01 23:30:07 +00:00
Mark Andrews
c8abbc4312 complete comment marker change 2017-04-30 20:55:04 +10:00
Tinderbox User
0ac6014fbf update copyright notice / whitespace 2017-04-28 23:45:32 +00:00
Tinderbox User
74b92c2196 newcopyrights 2017-04-28 23:30:03 +00:00
Evan Hunt
a7dc84cd4b [master] change markdown comment style for pandoc 2017-04-27 23:43:44 -07:00
Tinderbox User
8587dc4d87 newcopyrights 2017-04-26 23:30:18 +00:00
Tinderbox User
21d5216d00 newcopyrights 2017-04-24 23:30:07 +00:00
Evan Hunt
6ce8a05f6c [master] update copyrights that had been missed recently 2017-04-23 17:06:00 -07:00
Evan Hunt
58502352f2 [master] recent_changes script could terminate too early 2017-04-23 17:03:33 -07:00
Mark Andrews
6075bd5cf2 update 2017-04-24 09:41:55 +10:00
Tinderbox User
3f11af01b1 newcopyrights 2017-04-22 23:30:07 +00:00
Mukund Sivaraman
03be5a6b4e Improve performance for delegation heavy answers and also general query performance (#44029) 2017-04-22 09:22:44 +05:30
Tinderbox User
ddad49e937 newcopyrights 2017-04-21 23:30:04 +00:00
Tinderbox User
492e3413ff newcopyrights 2017-04-20 23:30:13 +00:00
Tinderbox User
e5447b5cb7 newcopyrights 2017-04-17 23:30:06 +00:00
Tinderbox User
b274ee1316 newcopyrights 2017-04-11 23:30:06 +00:00
Tinderbox User
373e35ad23 newcopyrights 2017-03-25 23:30:05 +00:00
Tinderbox User
b32a3395fc newcopyrights 2017-03-24 23:30:06 +00:00
Tinderbox User
b5425ac5bb newcopyrights 2017-03-16 23:30:08 +00:00
Mark Andrews
4b7a69ee71 update 2017-03-10 11:23:25 +11:00
Tinderbox User
08046df1f8 newcopyrights 2017-03-01 01:51:12 +00:00
Tinderbox User
0aa6c1b1ff newcopyrights 2017-02-28 23:30:04 +00:00
Tinderbox User
4aa492de85 newcopyrights 2017-02-21 23:30:06 +00:00
Tinderbox User
cc94177d80 newcopyrights 2017-02-20 23:30:05 +00:00
Tinderbox User
42039110be newcopyrights 2017-02-15 04:43:32 +00:00
Tinderbox User
8262a144ec newcopyrights 2017-02-08 23:30:05 +00:00
Mark Andrews
dc9ed164e6 update 2017-02-08 13:11:42 +11:00
Mark Andrews
3793e93fd9 remove redirect.db 2017-02-06 13:56:56 +11:00
Tinderbox User
85f41d0b00 newcopyrights 2017-02-04 23:30:05 +00:00
Tinderbox User
90f82c95ac newcopyrights 2017-02-03 23:30:04 +00:00
Mark Andrews
8562f6f9f4 set copyright type to zone 2017-02-03 22:14:47 +11:00
Tinderbox User
194f07c628 update copyright notice / whitespace 2017-02-02 23:45:47 +00:00
Tinderbox User
ba1e3d1e50 newcopyrights 2017-02-02 23:30:27 +00:00
Evan Hunt
2899fa37d2 [master] Remove obsolete Id lines that showed old date on generated bind.keys.h 2017-02-02 11:16:23 -08:00
Tinderbox User
f3dcaf37e0 newcopyrights 2017-01-31 23:30:10 +00:00
Tinderbox User
b8c28f1ec4 newcopyrights 2017-01-24 23:30:04 +00:00
Tinderbox User
b5ff64319e newcopyrights 2017-01-20 23:30:04 +00:00
Tinderbox User
661183a323 newcopyrights 2017-01-19 23:30:03 +00:00
Tinderbox User
1ea8dbb493 newcopyrights 2017-01-14 23:30:03 +00:00
Tinderbox User
1ecf531ee6 newcopyrights 2017-01-13 23:30:03 +00:00
Tinderbox User
ae2b524f25 newcopyrights 2017-01-12 23:30:14 +00:00
Tinderbox User
95b5ee062d newcopyrights 2017-01-10 23:30:03 +00:00
Tinderbox User
0908664518 newcopyrights 2017-01-09 23:30:03 +00:00
Tinderbox User
b7633ef208 newcopyrights 2017-01-06 23:30:02 +00:00
Tinderbox User
225ab92747 newcopyrights 2017-01-05 23:30:03 +00:00
Mark Andrews
2002188f83 update 2017-01-05 10:51:52 +11:00
Tinderbox User
781caaeefd newcopyrights 2016-12-30 23:30:16 +00:00
Tinderbox User
7b1835c467 newcopyrights 2016-12-28 23:30:27 +00:00
Tinderbox User
ddd52e1c40 newcopyrights 2016-12-27 23:30:22 +00:00
Tinderbox User
a04f600b46 newcopyrights 2016-12-26 23:30:28 +00:00
Tinderbox User
45f03878c9 newcopyrights 2016-12-13 23:30:25 +00:00
Tinderbox User
1ee9a6eb0d newcopyrights 2016-12-12 23:30:16 +00:00
Tinderbox User
61736a516e newcopyrights 2016-12-05 23:30:27 +00:00
Mark Andrews
e7e20e577d update 2016-12-01 10:39:00 +11:00
Mark Andrews
cab871f1bc 4522. [bug] Handle big gaps in log file version numbers better.
[RT #38688]
2016-11-30 10:55:21 +11:00
Mark Andrews
e527dcdb00 automate insertion of copyright year list into Bv9ARM-book.xml 2016-11-26 07:49:23 +11:00
Mark Andrews
e0c102d9ee copyrights/whitespace 2016-11-24 11:04:30 +11:00
Mark Andrews
aa44b4682a copyrights/whitespace 2016-11-03 12:41:00 +11:00
Tinderbox User
b7842079f8 newcopyrights 2016-11-01 23:31:07 +00:00
Tinderbox User
f5e806807b newcopyrights 2016-10-28 23:30:21 +00:00
Mark Andrews
49e94dc8d4 update copyrights 2016-10-28 11:27:49 +11:00
Mark Andrews
bcbacc4045 copyrights 2016-10-20 11:03:20 +11:00
Tinderbox User
a11e9a8402 newcopyrights 2016-10-11 23:30:18 +00:00
Mark Andrews
ea23a4868c use repo.isc.org rt43254 2016-09-26 15:25:03 +10:00
Tinderbox User
388a578aee newcopyrights 2016-09-09 23:30:06 +00:00
Tinderbox User
56b376dd15 newcopyrights 2016-09-07 23:30:04 +00:00
Tinderbox User
170fcfcda1 newcopyrights 2016-08-30 23:30:09 +00:00
Tinderbox User
92ea8326d8 newcopyrights 2016-08-25 23:30:08 +00:00
Tinderbox User
1c4ed966a3 newcopyrights 2016-08-24 23:30:09 +00:00
Mark Andrews
888dc0fb4f update copyrights / whitespace 2016-08-23 09:48:35 +10:00
Mark Andrews
63bff9f75c update copyright list 2016-08-19 10:58:09 +10:00
Mark Andrews
934837913f 4447. [tuning] Allow the fstrm_iothr_init() options to be set using
named.conf to control how dnstap manages the data
                        flow. [RT #42974]
2016-08-18 11:16:06 +10:00
Tinderbox User
35fd81d9b7 newcopyrights 2016-08-17 23:30:12 +00:00
Mark Andrews
19a8bd884f update 2016-08-16 09:44:27 +10:00
Mark Andrews
301a03d565 update 2016-08-13 12:43:36 +10:00
Mark Andrews
859a9ccbd7 update 2016-08-09 10:19:38 +10:00
Tinderbox User
ac02aaa802 newcopyrights 2016-07-27 23:30:57 +00:00
Tinderbox User
d2a2a4e863 newcopyrights 2016-07-22 23:30:42 +00:00
Mark Andrews
9616761417 copyrights 2016-07-22 15:58:48 +10:00
Mark Andrews
30e4fbdfb5 consolidate copyrights 2016-07-21 17:24:07 +10:00
Mark Andrews
813e9f7ee2 copyright 2016-07-21 17:00:44 +10:00
Tinderbox User
921633c824 newcopyrights 2016-07-07 04:18:01 +00:00
Tinderbox User
3a9694187f newcopyrights 2016-07-06 23:30:36 +00:00
Tinderbox User
66cbd6fc69 newcopyrights 2016-06-29 23:30:06 +00:00
Mark Andrews
0c27b3fe77 4401. [misc] Change LICENSE to MPL 2.0. 2016-06-27 14:56:38 +10:00
Mark Andrews
8927a982bd update copyrights / whitespace 2016-06-24 16:23:26 +10:00
Mark Andrews
4840ef4581 4395 [bug] Improve out-of-tree installation of python modules.
[RT #42586]
2016-06-24 12:20:37 +10:00
Tinderbox User
cdf1c3d486 newcopyrights 2016-06-22 23:30:16 +00:00
Tinderbox User
fda4ac481c newcopyrights 2016-06-20 23:30:03 +00:00
Tinderbox User
de5440dafc newcopyrights 2016-06-16 23:30:04 +00:00
Tinderbox User
dda78c0f84 newcopyrights 2016-06-14 23:30:03 +00:00
Tinderbox User
4b61b671f5 newcopyrights 2016-06-13 23:30:07 +00:00
Tinderbox User
6d6ac268af newcopyrights 2016-06-10 23:30:02 +00:00
Witold Krecicki
8f4e6ea383 update_copyrights 2016-06-01 15:06:32 +02:00
Tinderbox User
86cbf9559a newcopyrights 2016-05-31 23:30:02 +00:00
Tinderbox User
e47101a2fb newcopyrights 2016-05-30 23:30:04 +00:00
Tinderbox User
06ea55a433 newcopyrights 2016-05-27 23:30:09 +00:00
Evan Hunt
6c2a76b3e2 [master] copyrights, win32 definitions 2016-05-26 12:36:17 -07:00
Tinderbox User
34d1f3b653 newcopyrights 2016-05-25 23:30:07 +00:00
Tinderbox User
718c26fa9d newcopyrights 2016-05-17 03:45:36 +00:00
Tinderbox User
77f9b64584 newcopyrights 2016-05-11 23:30:07 +00:00
Tinderbox User
f4f4b97a35 newcopyrights 2016-05-09 23:30:26 +00:00
Tinderbox User
361967ea97 newcopyrights 2016-05-05 23:30:45 +00:00
Evan Hunt
7614afdab2 [master] remove copyright header from policy.good 2016-05-05 14:26:15 -07:00
Evan Hunt
f1a2709aad [master] add extractability to pkcs11-list
4354.	[func]		"pkcs11-list" now displays the extractability
			attribute of private or secret keys stored in
			an HSM, as either "true", "false", or "never"
			Thanks to Daniel Stirnimann. [RT #36557]
2016-05-04 21:56:48 -07:00
Tinderbox User
872e143729 newcopyrights 2016-05-04 23:30:11 +00:00
Evan Hunt
699f790c49 [master] update pkcs11 headers
4353.	[cleanup]	Update PKCS#11 header files. [RT #42175]
2016-05-04 15:55:03 -07:00
Tinderbox User
73537e8418 newcopyrights 2016-04-30 23:30:17 +00:00
Tinderbox User
21635968f7 update copyright notice / whitespace 2016-04-29 23:45:42 +00:00
Tinderbox User
3bd8b5a8fb newcopyrights 2016-04-29 23:30:17 +00:00
Evan Hunt
168cf0ede1 [master] fix update_copyrights to deal with python modules correctly 2016-04-28 22:29:45 -07:00
Mark Andrews
ab83387727 update 2016-04-29 09:50:50 +10:00
Tinderbox User
4bc4740495 newcopyrights 2016-04-15 04:52:31 +00:00
Evan Hunt
5ecfee97ba [master] copyrights 2016-04-14 19:12:13 -07:00
Tinderbox User
ebef9584ef newcopyrights 2016-04-13 23:30:04 +00:00
Tinderbox User
72a6417eb3 newcopyrights 2016-04-12 23:30:03 +00:00
Tinderbox User
ace87434ed newcopyrights 2016-04-05 23:30:03 +00:00
Tinderbox User
e76dfff967 newcopyrights 2016-03-25 23:30:03 +00:00
Tinderbox User
c19f42a378 update copyright notice / whitespace 2016-03-24 23:45:21 +00:00
Tinderbox User
9160e27507 newcopyrights 2016-03-24 23:30:03 +00:00
Mark Andrews
ad7312bf18 use full tag with git archive
(cherry picked from commit 32a09f01d61ce2fb963370b51e328a7b54c3ad27)
2016-03-24 17:03:32 +11:00
Mark Andrews
3a88873c5b use shorthash to avoid race when using a branch name
(cherry picked from commit fe35097681)
2016-03-24 12:59:00 +11:00
Tinderbox User
689fb19ba1 newcopyrights 2016-03-23 23:30:02 +00:00
Tinderbox User
1cbfdb3c23 newcopyrights 2016-03-22 23:30:03 +00:00
Tinderbox User
1dbe80aade newcopyrights 2016-03-21 23:30:03 +00:00
Tinderbox User
4898d4ae60 newcopyrights 2016-03-16 23:30:03 +00:00
Tinderbox User
969eaf7df8 newcopyrights 2016-03-15 23:30:02 +00:00
Tinderbox User
bd4b86327d newcopyrights 2016-03-11 23:30:02 +00:00
Tinderbox User
e1a389f747 newcopyrights 2016-03-10 23:30:05 +00:00
Tinderbox User
fc57adef42 newcopyrights 2016-03-09 23:30:02 +00:00
Tinderbox User
a426556026 newcopyrights 2016-03-09 00:55:52 +00:00
Tinderbox User
a6f8640ede newcopyrights 2016-03-08 23:03:25 +00:00
Tinderbox User
7d638dd31e newcopyrights 2016-03-08 22:28:41 +00:00
Mark Andrews
93ca5ee4c4 update copyrights 2016-03-08 16:21:19 +11:00
Tinderbox User
34348322c7 newcopyrights 2016-03-04 23:30:07 +00:00
Tinderbox User
8fabea916f newcopyrights 2016-03-02 23:30:02 +00:00
Mark Andrews
7f514657e2 update copyrights 2016-02-25 10:55:40 +11:00
Tinderbox User
7692464e78 newcopyrights 2016-02-23 23:30:18 +00:00
Tinderbox User
267e57d39b newcopyrights 2016-02-20 23:30:09 +00:00
Tinderbox User
53ba272721 update copyright notice / whitespace 2016-02-18 23:45:32 +00:00
Tinderbox User
fab5478040 newcopyrights 2016-02-18 23:30:09 +00:00
Tinderbox User
0c9af52e8f newcopyrights 2016-02-17 23:30:09 +00:00
Tinderbox User
9dde9ce555 newcopyrights 2016-02-12 23:30:04 +00:00
Mark Andrews
4c6bf2d14e add sanity check that $base is '.docbook' 2016-02-12 11:11:42 +11:00
Mark Andrews
66c9805347 automatically set year to 'DOCBOOK' if '.docbook' exists for MAN and HTML 2016-02-12 11:07:24 +11:00
Mark Andrews
fec6e13f2d inherit years from docbook 2016-02-12 10:46:46 +11:00
Tinderbox User
170a1a5adb newcopyrights 2016-02-11 23:30:03 +00:00
Mark Andrews
b91d11bfcc copyrights / whitespace 2016-02-11 10:44:21 +11:00
Tinderbox User
391130fffd newcopyrights 2016-02-03 23:30:40 +00:00
Tinderbox User
bd89a8c38d newcopyrights 2016-02-02 23:30:02 +00:00
Tinderbox User
f4ee48be39 newcopyrights 2016-02-01 23:30:03 +00:00
Tinderbox User
3915dc3dae newcopyrights 2016-01-31 23:30:03 +00:00
Tinderbox User
a2c370ca12 newcopyrights 2016-01-30 23:30:03 +00:00
Tinderbox User
631aac8c28 newcopyrights 2016-01-29 23:30:03 +00:00
Tinderbox User
549c517e2e newcopyrights 2016-01-28 23:30:10 +00:00
Evan Hunt
30370d905e [master] removed /Gy- from VS project files
4302.	[port]		win32: fixed a build error in VS 2015. [RT #41426]
2016-01-27 15:27:57 -08:00
Tinderbox User
7f9e2fff07 newcopyrights 2016-01-25 23:30:03 +00:00
Tinderbox User
76408aae41 newcopyrights 2016-01-22 23:30:03 +00:00
Tinderbox User
2706fce75f newcopyrights 2016-01-21 23:30:03 +00:00
Tinderbox User
1fce11b1d3 newcopyrights 2016-01-20 23:30:03 +00:00
Evan Hunt
b7f4a6fd8a [master] copyrights 2016-01-16 15:54:16 -08:00
Tinderbox User
aef6cf0f14 newcopyrights 2016-01-05 23:30:01 +00:00
Tinderbox User
5affecff6e newcopyrights 2016-01-04 23:30:02 +00:00
Tinderbox User
5f76877508 newcopyrights 2016-01-02 23:30:01 +00:00
Tinderbox User
19558a04de newcopyrights 2016-01-01 23:30:01 +00:00
Evan Hunt
0bb05fe2c2 [master] copyrights 2015-12-26 18:07:19 -08:00
Francis Dupont
c1e2310a37 updated copyrights 2015-12-23 22:55:48 +01:00
Tinderbox User
2beefc22e6 newcopyrights 2015-12-16 23:30:05 +00:00
Tinderbox User
50cfe402e6 newcopyrights 2015-12-15 23:30:08 +00:00
Tinderbox User
09ee43766e newcopyrights 2015-12-09 23:30:03 +00:00
Tinderbox User
36c0c1405d newcopyrights 2015-12-07 23:30:05 +00:00
Mark Andrews
d2247b4740 update copyrights 2015-12-03 14:17:48 +11:00
Tinderbox User
a907c61823 newcopyrights 2015-11-30 23:30:05 +00:00
Tinderbox User
6634faa55b newcopyrights 2015-11-24 23:30:04 +00:00
Tinderbox User
6d114a4c5c newcopyrights 2015-11-20 23:30:05 +00:00
Tinderbox User
af682c183e newcopyrights 2015-11-18 23:30:05 +00:00
Tinderbox User
5e82fe9a56 newcopyrights 2015-11-16 23:30:05 +00:00
Tinderbox User
862cad747c newcopyrights 2015-11-11 23:30:05 +00:00
Tinderbox User
03ebc228ee newcopyrights 2015-11-09 23:30:07 +00:00
Tinderbox User
5ec4325534 newcopyrights 2015-11-06 23:30:04 +00:00
Mark Andrews
e74212eb2f remove bin/tests/compress_test.c 2015-11-06 10:58:05 +11:00
Tinderbox User
1404d301dd newcopyrights 2015-11-05 23:30:12 +00:00
Mark Andrews
6b97689375 remove /bin/tests/system/statschannel/tests.sh.in 2015-10-30 11:57:12 +11:00
Tinderbox User
1bf507ca63 newcopyrights 2015-10-29 23:30:03 +00:00
Evan Hunt
aa9b64060f [master] fix statschannel with no libjson
4246.	[test]		Ensure the statschannel system test runs when BIND
			is not built with libjson. [RT #40944]
2015-10-28 20:19:31 -07:00
Mark Andrews
79f0eedd65 cleanup trailing whitespace 2015-10-22 16:24:03 +11:00
Mark Andrews
30eec077db cleanup trailing white space in SGML like files 2015-10-22 16:09:46 +11:00
Tinderbox User
2964b1f272 newcopyrights 2015-10-15 23:30:03 +00:00
Mark Andrews
827f8cccb5 update 2015-10-07 10:38:35 +11:00
Mark Andrews
f7a6d4f915 teach merge_copyrights about .sty, .pdf, and .eps 2015-10-07 10:36:43 +11:00
Mark Andrews
d9156bba3e look for opening [ 2015-10-06 19:40:01 +11:00
Mark Andrews
3db767c98f handle <!ENTITY within <!DOCTYPE 2015-10-06 18:19:24 +11:00
Evan Hunt
6715db6593 [master] fix copyright warnings 2015-10-05 23:14:11 -07:00
Evan Hunt
1921b85064 [master] copyrights 2015-10-02 17:13:35 -07:00
Tinderbox User
31de528a5f newcopyrights 2015-10-01 23:30:03 +00:00
Tinderbox User
551e0d486d update copyright notice / whitespace 2015-09-30 23:45:36 +00:00
Tinderbox User
9e295ad801 newcopyrights 2015-09-30 23:30:03 +00:00
Mark Andrews
ac2e2800b4 newcopyrights 2015-09-30 13:55:50 +10:00
Mark Andrews
6c4f9b5cf6 split out logging-categories [RT #40844] 2015-09-30 12:56:31 +10:00
Mark Andrews
e813f036c8 update 2015-09-29 09:46:07 +10:00
Tinderbox User
5ca309a0fb newcopyrights 2015-09-23 23:30:04 +00:00
Tinderbox User
c26604a73c newcopyrights 2015-09-22 23:30:06 +00:00
Tinderbox User
ff8d6ca9d5 newcopyrights 2015-09-21 23:30:07 +00:00
Tinderbox User
8f1a00cf8b newcopyrights 2015-09-18 23:30:08 +00:00
Tinderbox User
0a2ff769ec newcopyrights 2015-09-17 23:30:07 +00:00
Mark Andrews
8f36576365 update util/copyrights 2015-09-17 09:41:04 +10:00
Mark Andrews
1eec6885ab update comment 2015-09-15 16:47:50 +10:00
Tinderbox User
43c8875306 newcopyrights 2015-09-14 23:30:03 +00:00
Tinderbox User
6284b9b877 newcopyrights 2015-09-11 23:30:06 +00:00
Tinderbox User
e5a6871cd0 newcopyrights 2015-09-10 23:30:14 +00:00
Mark Andrews
1efe84be78 update 2015-09-10 10:39:47 +10:00
Tinderbox User
280a8a0544 newcopyrights 2015-08-28 00:01:19 +00:00
Mark Andrews
6376f61899 add support for .gitattributes 2015-08-27 23:55:00 +00:00
Tinderbox User
f190095cae newcopyrights 2015-08-26 23:30:03 +00:00
Tinderbox User
c19bf21885 newcopyrights 2015-08-25 23:30:06 +00:00
Tinderbox User
9f8051ea40 newcopyrights 2015-08-22 23:30:04 +00:00
Tinderbox User
59602f2a7c newcopyrights 2015-08-20 23:30:02 +00:00
Mark Andrews
5a6d22a5b3 update 2015-08-19 09:55:43 +10:00
Tinderbox User
a05244bb01 newcopyrights 2015-08-17 23:30:05 +00:00
Tinderbox User
f2f7a53ba0 newcopyrights 2015-08-16 23:30:06 +00:00
Tinderbox User
e98d2156a9 newcopyrights 2015-08-15 23:30:05 +00:00
Tinderbox User
f525041ae2 newcopyrights 2015-08-14 23:30:10 +00:00
Mark Andrews
a72e61866a printmsg.[ch] are no more 2015-08-14 11:24:48 +10:00
Tinderbox User
b6420d4bbb newcopyrights 2015-08-13 23:30:05 +00:00
Tinderbox User
c0cc232ba9 newcopyrights 2015-08-12 23:30:09 +00:00
Tinderbox User
a3ffa9ab06 newcopyrights 2015-08-10 23:30:07 +00:00
Tinderbox User
d6487e3c0a newcopyrights 2015-08-07 23:30:04 +00:00
Tinderbox User
213dd665a9 newcopyrights 2015-08-02 23:30:05 +00:00
Tinderbox User
c13b582b16 update copyright notice / whitespace 2015-07-31 23:45:25 +00:00
Tinderbox User
f32d969932 newcopyrights 2015-07-31 23:30:04 +00:00
Evan Hunt
6c7e1075fe [master] use 7 character short hash for srcid 2015-07-31 14:10:43 -07:00
Tinderbox User
7a1fdd4b82 newcopyrights 2015-07-24 23:30:05 +00:00
Tinderbox User
8add7cdaa8 newcopyrights 2015-07-13 23:30:04 +00:00
Tinderbox User
3d015b2a0a newcopyrights 2015-07-10 23:30:11 +00:00
Tinderbox User
51374c645c newcopyrights 2015-07-09 23:30:20 +00:00
Tinderbox User
21b353c36c newcopyrights 2015-07-07 23:30:04 +00:00
Evan Hunt
70d987def5 [master] traffic size stats
4156.	[func]		Added statistics counters to track the sizes
			of incoming queries and outgoing responses in
			histogram buckets, as specified in RSSAC002.
			[RT #39049]
2015-07-06 22:29:06 -07:00
Mark Andrews
474b70711c remove bin/tests/system/cookie/prereq.sh.in 2015-07-07 13:41:04 +10:00
Mark Andrews
ecbc7ebb24 update 2015-07-07 10:30:18 +10:00
Mark Andrews
ce67023ae3 4152. [func] Implement DNS COOKIE option. This replaces the
experimental SIT option of BIND 9.10.  The following
                        named.conf directives are avaliable: send-cookie,
                        cookie-secret, cookie-algorithm and nocookie-udp-size.
                        The following dig options are available:
                        +[no]cookie[=value] and +[no]badcookie.  [RT #39928]
2015-07-06 09:44:24 +10:00
Tinderbox User
e97aa53515 newcopyrights 2015-07-03 23:30:06 +00:00
Tinderbox User
6e38a18aef newcopyrights 2015-07-01 23:30:03 +00:00
Tinderbox User
294e9d4c34 newcopyrights 2015-06-30 23:30:03 +00:00
Tinderbox User
4c6bae917b newcopyrights 2015-06-29 23:30:04 +00:00
Tinderbox User
dd53726b24 newcopyrights 2015-06-23 23:30:05 +00:00
Tinderbox User
8b8e37f252 newcopyrights 2015-06-05 23:30:02 +00:00
Tinderbox User
7d19af23a7 newcopyrights 2015-06-04 23:30:05 +00:00
Tinderbox User
0197efed43 newcopyrights 2015-05-28 23:30:05 +00:00
Mark Andrews
a450977e98 update 2015-05-28 14:28:42 +10:00
Mark Andrews
97202f6738 cleanup delv system test is gone 2015-05-27 11:12:19 +10:00
Tinderbox User
1f471f3b06 newcopyrights 2015-05-24 23:30:06 +00:00
Tinderbox User
33d1cff1dd newcopyrights 2015-05-23 23:30:05 +00:00
Francis Dupont
850cfa4e86 Added isc in includes (print.h requires it) 2015-05-23 15:51:34 +02:00
Francis Dupont
3759f10fc5 added print.h includes, updated copyrights 2015-05-23 14:21:51 +02:00
Tinderbox User
fca737c98d newcopyrights 2015-05-22 23:30:13 +00:00
Mark Andrews
0d13a9584b update 2015-05-22 12:39:37 +10:00
Mark Andrews
cb40461f87 update util/copyrights 2015-05-21 10:35:14 +10:00
Tinderbox User
e5be5a9f94 newcopyrights 2015-05-11 23:30:05 +00:00
Mark Andrews
d56349eff4 update copyrights 2015-05-08 16:12:44 +10:00
Tinderbox User
f0c5e91897 newcopyrights 2015-05-06 23:30:06 +00:00
Tinderbox User
76fbdc591b newcopyrights 2015-05-05 23:30:05 +00:00
Tinderbox User
3a28155fe2 newcopyrights 2015-05-04 23:30:06 +00:00
Tinderbox User
646fed0d28 newcopyrights 2015-04-28 23:30:03 +00:00
Tinderbox User
c218e22e3e newcopyrights 2015-04-23 23:30:13 +00:00
Tinderbox User
7c8e44a2dc newcopyrights 2015-04-21 23:30:04 +00:00
Mark Andrews
10a0fc31e3 add copyright 2015-04-18 21:26:35 +10:00
Tinderbox User
c505effec1 newcopyrights 2015-04-17 23:30:04 +00:00
Mark Andrews
8f1ca2e8ff add copy of Coverity models.c file 2015-04-17 13:59:28 +10:00
Francis Dupont
bcb68be0a8 misc fixes for VS 2015 CTP #39267 2015-04-17 02:57:02 +02:00
Mark Andrews
c855e7170a 4100. [bug] Inherited owernames on the line immediately following
a $INCLUDE were not working.  [RT #39268]
2015-04-15 12:47:57 +10:00