Ondřej Surý
|
66af8713d8
|
lib/dns/rdata/*/*.c: Silence false positive nullPointerRedundantCheck warning from Cppcheck
Cppcheck gets confused by:
void bar(void *arg) {
foo *data = arg;
REQUIRE(source != NULL);
REQUIRE(data->member != NULL);
}
and for consistency the DbC check needs to be changed to
void bar(void *arg) {
foo *data = arg;
REQUIRE(data != NULL);
REQUIRE(data->member != NULL);
}
|
2019-10-03 09:04:26 +02:00 |
|
Ondřej Surý
|
7fd3dc63de
|
Add generic message digest API (isc_md) to replace specific MD functions md5/sha1/sha256
|
2018-10-25 08:15:42 +02:00 |
|
Ondřej Surý
|
994e656977
|
Replace custom isc_boolean_t with C standard bool type
|
2018-08-08 09:37:30 +02: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ý
|
843d389661
|
Update license headers to not include years in copyright in all applicable files
|
2018-02-23 10:12:02 +01:00 |
|
Mark Andrews
|
0c27b3fe77
|
4401. [misc] Change LICENSE to MPL 2.0.
|
2016-06-27 14:56:38 +10:00 |
|
Mark Andrews
|
3dd63ba00f
|
4199. [protocol] Add support for NINFO, RKEY, TA.
[RT #40545] [RT #40547] [RT #40563]
|
2015-09-10 17:58:29 +10:00 |
|
Mukund Sivaraman
|
b0ba1a6059
|
Use mnemonics for RR class and type comparisons (#40297)
|
2015-08-17 12:23:35 +05:30 |
|
Tinderbox User
|
f72460c717
|
update copyright notice / whitespace
|
2015-01-30 23:45:24 +00:00 |
|
Mark Andrews
|
e77ef50a57
|
4049. [bug] CDS and CDNSKEY had the wrong attributes. [RT #38491]
|
2015-01-30 21:48:28 +11:00 |
|
Tinderbox User
|
5a31767b09
|
update copyright notice
|
2014-06-19 23:45:23 +00:00 |
|
Evan Hunt
|
cac2181160
|
[master] CDS/CDNSKEY rrtypes
3884. [protocol] Add CDS and CDNSKEY record types. [RT #36333]
|
2014-06-19 00:35:11 -07:00 |
|