mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 00:49:59 -04:00
copyrights
This commit is contained in:
parent
4729357675
commit
884e8df7ca
8 changed files with 11 additions and 15 deletions
2
CHANGES
2
CHANGES
|
|
@ -24,7 +24,7 @@
|
|||
argument processing. [GL #206]
|
||||
|
||||
4922. [bug] dnstap: Log the destination address of client
|
||||
packets rather than the interface address.
|
||||
packets rather than the interface address.
|
||||
[GL #197]
|
||||
|
||||
4921. [cleanup] Add dns_fixedname_initname() and refactor the caller
|
||||
|
|
|
|||
|
|
@ -1100,7 +1100,7 @@ plus_option(const char *option, isc_boolean_t is_batchfile,
|
|||
FULLCHECK("idnin");
|
||||
#ifndef WITH_IDN_SUPPORT
|
||||
fprintf(stderr, ";; IDN input support"
|
||||
" not enabled\n");
|
||||
" not enabled\n");
|
||||
#else
|
||||
lookup->idnin = state;
|
||||
#endif
|
||||
|
|
@ -1109,7 +1109,7 @@ plus_option(const char *option, isc_boolean_t is_batchfile,
|
|||
FULLCHECK("idnout");
|
||||
#ifndef WITH_IDN_OUT_SUPPORT
|
||||
fprintf(stderr, ";; IDN output support"
|
||||
" not enabled\n");
|
||||
" not enabled\n");
|
||||
#else
|
||||
lookup->idnout = state;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -1286,7 +1286,7 @@ dig +qr www.isc.org any -x 127.0.0.1 isc.org ns +noqr
|
|||
<command>dig</command> appropriately converts character encoding of
|
||||
domain name before sending a request to DNS server or displaying a
|
||||
reply from the server.
|
||||
If you'd like to turn off the IDN support for some reason, use
|
||||
If you'd like to turn off the IDN support for some reason, use
|
||||
parameters <parameter>+noidnin</parameter> and
|
||||
<parameter>+noidnout</parameter>.
|
||||
</para>
|
||||
|
|
|
|||
|
|
@ -4719,12 +4719,12 @@ idn_locale_to_ace(const char *from, char *to, size_t tolen) {
|
|||
idn_result_t result;
|
||||
|
||||
result = idn_encodename(IDN_LOCALCONV | IDN_DELIMMAP, from,
|
||||
utf8_textname, sizeof(utf8_textname));
|
||||
utf8_textname, sizeof(utf8_textname));
|
||||
idnkit_check_result(result, "idnkit idn_encodename to utf8 failed");
|
||||
|
||||
result = idn_encodename(idnoptions | IDN_LOCALMAP | IDN_NAMEPREP |
|
||||
IDN_IDNCONV | IDN_LENCHECK,
|
||||
utf8_textname, to, tolen);
|
||||
IDN_IDNCONV | IDN_LENCHECK,
|
||||
utf8_textname, to, tolen);
|
||||
idnkit_check_result(result, "idnkit idn_encodename to idn failed");
|
||||
return (ISC_R_SUCCESS);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ Here is a more formal statement of the important database design
|
|||
rules. Each rule has a 5 character mnemonic, for use in source code
|
||||
comments.
|
||||
|
||||
|
||||
Reference Safety [DBREF]
|
||||
|
||||
1) Any node reference retrieved from the database shall remain
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
|
|||
We do hourly test builds of the bind9 tree. This is an attempt to
|
||||
document how they work.
|
||||
|
||||
|
||||
* How things work
|
||||
|
||||
The scripts driving the build system are in ~wpk/b9t. They are now
|
||||
|
|
|
|||
|
|
@ -460,11 +460,11 @@ ATF_TC_BODY(updatesigs, tc) {
|
|||
#else
|
||||
ATF_TC(untested);
|
||||
ATF_TC_HEAD(untested, tc) {
|
||||
atf_tc_set_md_var(tc, "descr", "skipping dns__zone_updatesigs() test");
|
||||
atf_tc_set_md_var(tc, "descr", "skipping dns__zone_updatesigs() test");
|
||||
}
|
||||
ATF_TC_BODY(untested, tc) {
|
||||
UNUSED(tc);
|
||||
atf_tc_skip("DNSSEC support not compiled in");
|
||||
UNUSED(tc);
|
||||
atf_tc_skip("DNSSEC support not compiled in");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1447,10 +1447,8 @@
|
|||
./bin/tests/system/gost/setup.sh SH 2010,2012,2014,2016,2018
|
||||
./bin/tests/system/gost/tests.sh SH 2010,2012,2013,2016,2018
|
||||
./bin/tests/system/idna/clean.sh SH 2018
|
||||
./bin/tests/system/idna/ns1/named.conf CONF-C 2018
|
||||
./bin/tests/system/idna/ns1/named.conf.in CONF-C 2018
|
||||
./bin/tests/system/idna/ns1/root.db ZONE 2018
|
||||
./bin/tests/system/idna/prereq.sh SH 2018
|
||||
./bin/tests/system/idna/setup.sh SH 2018
|
||||
./bin/tests/system/idna/tests.sh SH 2018
|
||||
./bin/tests/system/ifconfig.bat BAT 2016,2018
|
||||
|
|
@ -3069,6 +3067,7 @@
|
|||
./doc/arm/notes.conf X 2015,2018
|
||||
./doc/arm/notes.html X 2014,2015,2016,2017,2018
|
||||
./doc/arm/notes.pdf X 2014,2015,2016,2017,2018
|
||||
./doc/arm/notes.txt X 2018
|
||||
./doc/arm/notes.xml SGML 2014,2015,2016,2017,2018
|
||||
./doc/arm/noteversion.xml.in SGML 2015,2016,2018
|
||||
./doc/arm/options.grammar.xml SGML 2018
|
||||
|
|
@ -3770,7 +3769,6 @@
|
|||
./lib/isc/bind9.c C 2013,2016,2018
|
||||
./lib/isc/buffer.c C 1998,1999,2000,2001,2002,2004,2005,2006,2007,2008,2012,2014,2015,2016,2017,2018
|
||||
./lib/isc/bufferlist.c C 1999,2000,2001,2004,2005,2007,2016,2018
|
||||
./lib/isc/chacha_private.h X 2014,2018
|
||||
./lib/isc/commandline.c C.PORTION 1999,2000,2001,2004,2005,2007,2008,2014,2015,2016,2018
|
||||
./lib/isc/counter.c C 2014,2016,2018
|
||||
./lib/isc/crc64.c C 2013,2016,2018
|
||||
|
|
|
|||
Loading…
Reference in a new issue