- 07 Mar, 2012 1 commit
-
-
Mark Andrews authored
-
- 05 Mar, 2011 2 commits
-
-
Automatic Updater authored
-
Evan Hunt authored
of DNSSEC data in dig output and in generated zone files: - DNSKEY record comments are more verbose, no longer used in multiline mode only - multiline RRSIG records reformatted - multiline output mode for NSEC3PARAM records - "dig +norrcomments" suppresses DNSKEY comments - "dig +split=X" breaks hex/base64 records into fields of width X; "dig +nosplit" disables this. [RT #22820]
-
- 04 Dec, 2009 2 commits
-
-
Automatic Updater authored
-
Mark Andrews authored
to DNSSEC but are sematically equal according to plain DNS. Apply plain DNS comparisons rather than DNSSEC comparisons when processing UPDATE requests. dnssec-signzone now removes such semantically duplicate records prior to signing the RRset. named-checkzone -r {ignore|warn|fail} (default warn) named-compilezone -r {ignore|warn|fail} (default warn) named.conf: check-dup-records {ignore|warn|fail};
-
- 19 Jun, 2007 1 commit
-
-
Automatic Updater authored
-
- 18 Jun, 2007 1 commit
-
-
Automatic Updater authored
-
- 20 Mar, 2005 1 commit
-
-
Mark Andrews authored
-
- 18 Mar, 2005 1 commit
-
-
Mark Andrews authored
-
- 05 Mar, 2004 1 commit
-
-
Mark Andrews authored
-
- 27 Feb, 2004 1 commit
-
-
Mark Andrews authored
-
- 25 Jul, 2003 1 commit
-
-
Mark Andrews authored
-
- 20 Feb, 2002 1 commit
-
-
Mark Andrews authored
-
- 21 Jan, 2002 1 commit
-
-
Mark Andrews authored
-
- 05 Jan, 2002 1 commit
-
-
Olafur Gudmundsson authored
-
- 27 Nov, 2001 1 commit
-
-
Andreas Gustafsson authored
-
- 16 Jul, 2001 1 commit
-
-
Mark Andrews authored
[RT #1084] 935. [bug] inet_pton failed to reject leading zeros.
-
- 21 Jun, 2001 1 commit
-
-
Mark Andrews authored
mem_maybedup() in *tostruct(). TXT is one or more (not zero or more) strings.
-
- 16 Mar, 2001 1 commit
-
-
Brian Wellington authored
turned off.
-
- 06 Mar, 2001 1 commit
-
-
Mark Andrews authored
Two new error codes. Also push back the last token, if it makes sense to do so, so that it gets printed in the error message using RETTOK macro, rather than straight return or RETERR.
-
- 12 Feb, 2001 1 commit
-
-
Brian Wellington authored
passed into dns_name_toregion(). This is effectively free, and reduces the number of calls to set_offsets() and dns_name_clone() in name compression.
-
- 09 Jan, 2001 1 commit
-
-
Brian Wellington authored
-
- 01 Dec, 2000 1 commit
-
-
Andreas Gustafsson authored
is turned off
-
- 08 Nov, 2000 1 commit
-
-
Brian Wellington authored
been replaced with isc_lex_getmastertoken().
-
- 25 Oct, 2000 1 commit
-
-
Mark Andrews authored
Add sanity checks to rdata types where the length cannot legally be zero.
-
- 01 Aug, 2000 1 commit
-
-
David Lawrence authored
own CVS tree will help minimize CVS conflicts. Maybe not. Blame Graff for getting me to trim all trailing whitespace.
-
- 27 Jul, 2000 1 commit
-
-
David Lawrence authored
-
- 01 Jun, 2000 2 commits
-
-
David Lawrence authored
Mostly, several functions that take pointers as arguments, almost always char * pointers, had those pointers qualified with "const". Those that returned pointers to previously const-qualified arguments had their return values qualified as const. Some structure members were qualified as const to retain that attribute from the variables from which they were assigned. The macro DE_CONST is used to deal with a handful of very special places where something is qualified as const but really needs to have its const qualifier removed. rdata.c now defines macros for the prototypes of the basic rdata functions, and all of the lib/dns/rdata/**/*.c files now use them. Some minor integer-compatibility issues. (IE, ~0x03 is a signed int, so assigning it to an unsigned int should use a cast. The type of an enum member is int, so there are some conversion issues there, too.) A pointers-to-function should not be cast to a pointer-to-object. Variables should not be named for C reserved identifiers. One or two set-but-not-used variables removed. Minor other ISC style cleanups.
-
Andreas Gustafsson authored
-
- 25 May, 2000 1 commit
-
-
Brian Wellington authored
-
- 22 May, 2000 1 commit
-
-
Mark Andrews authored
Add missing REQUIRE tests to existing implementations.
-
- 19 May, 2000 1 commit
-
-
Mark Andrews authored
-
- 15 May, 2000 1 commit
-
-
David Lawrence authored
-
- 13 May, 2000 1 commit
-
-
David Lawrence authored
"./rdata/any_255/tsig_250.c", line 74: remark(1506): implicit conversion from "unsigned long" to "int": rounding, sign extension, or loss of accuracy may result "./rdata/any_255/tsig_250.c", line 95: remark(1506): implicit conversion from "unsigned long" to "int": rounding, sign extension, or loss of accuracy may result The values in question were already being checked to be within the range of a short, so where the warnings were occuring they were just cast to int.
-
- 08 May, 2000 1 commit
-
-
David Lawrence authored
since rdata.c is including string.h, the individual rdata files do not need to.
-
- 05 May, 2000 1 commit
-
-
Andreas Gustafsson authored
a simple name data copy, thereby requiring a non-NULL mctx
-
- 04 May, 2000 1 commit
-
-
Andreas Gustafsson authored
dns_[de]compress_setmethods instead of separately in every caller
-
- 28 Apr, 2000 2 commits
-
-
David Lawrence authored
renamed isc_string_touint64. isc_strsep moved from strsep.c to string.c and renamed isc_string_separate.
-
Andreas Gustafsson authored
-
- 27 Apr, 2000 1 commit
-
-
David Lawrence authored
Added: isc_buffer_base(b) (pointer) isc_buffer_current(b) (pointer) isc_buffer_active(b) (pointer) isc_buffer_used(b) (pointer) isc_buffer_length(b) (int) isc_buffer_usedlength(b) (int) isc_buffer_consumedlength(b) (int) isc_buffer_remaininglength(b) (int) isc_buffer_activelength(b) (int) isc_buffer_availablelength(b) (int) Removed: ISC_BUFFER_USEDCOUNT(b) ISC_BUFFER_AVAILABLECOUNT(b) isc_buffer_type(b) Changed names: isc_buffer_used(b, r) -> isc_buffer_usedregion(b, r) isc_buffer_available(b, r) -> isc_buffer_available_region(b, r) isc_buffer_consumed(b, r) -> isc_buffer_consumedregion(b, r) isc_buffer_active(b, r) -> isc_buffer_activeregion(b, r) isc_buffer_remaining(b, r) -> isc_buffer_remainingregion(b, r) Buffer types were removed, so the ISC_BUFFERTYPE_* macros are no more, and the type argument to isc_buffer_init and isc_buffer_allocate were removed. isc_buffer_putstr is now void (instead of isc_result_t) and requires that the caller ensure that there is enough available buffer space for the string.
-