Mark Andrews
|
3429c35f52
|
TLSA: fix fromwire length checks
|
2020-08-13 23:06:55 +10:00 |
|
Evan Hunt
|
e851ed0bb5
|
apply the modified style
|
2020-02-13 15:05:06 -08:00 |
|
Ondřej Surý
|
056e133c4c
|
Use clang-tidy to add curly braces around one-line statements
The command used to reformat the files in this commit was:
./util/run-clang-tidy \
-clang-tidy-binary clang-tidy-11
-clang-apply-replacements-binary clang-apply-replacements-11 \
-checks=-*,readability-braces-around-statements \
-j 9 \
-fix \
-format \
-style=file \
-quiet
clang-format -i --style=format $(git ls-files '*.c' '*.h')
uncrustify -c .uncrustify.cfg --replace --no-backup $(git ls-files '*.c' '*.h')
clang-format -i --style=format $(git ls-files '*.c' '*.h')
|
2020-02-13 22:07:21 +01:00 |
|
Ondřej Surý
|
f50b1e0685
|
Use clang-format to reformat the source files
|
2020-02-12 15:04:17 +01:00 |
|
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 |
|
Mark Andrews
|
5e8b772ad1
|
Ensure base64/base32/hex fields in DNS records that should be non-empty are.
|
2019-01-09 18:04:21 +11:00 |
|
Ondřej Surý
|
994e656977
|
Replace custom isc_boolean_t with C standard bool type
|
2018-08-08 09:37:30 +02:00 |
|
Mark Andrews
|
63c9ec367f
|
use tlsa and smime structs to set common values
|
2018-08-01 18:15:08 -04:00 |
|
Mark Andrews
|
6e06d3e7c6
|
remove re-initalisation of common structure
|
2018-07-12 09:37:13 +10: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 |
|
Tinderbox User
|
ca0ae70046
|
update copyright notice / whitespace
|
2017-10-03 23:45:48 +00:00 |
|
Mark Andrews
|
a009d03a1a
|
4748. [cleanup] Sprintf to snprintf coversions. [RT #46132]
|
2017-10-03 14:54:19 +11:00 |
|
Mark Andrews
|
0c27b3fe77
|
4401. [misc] Change LICENSE to MPL 2.0.
|
2016-06-27 14:56:38 +10:00 |
|
Mark Andrews
|
322e6b5be7
|
4276. [protocol] Add support for SMIMEA. [RT #40513]
|
2015-12-08 08:16:41 +11:00 |
|
Tinderbox User
|
503ffdad3b
|
update copyright notice / whitespace
|
2015-08-17 23:45:35 +00:00 |
|
Mukund Sivaraman
|
b0ba1a6059
|
Use mnemonics for RR class and type comparisons (#40297)
|
2015-08-17 12:23:35 +05:30 |
|
Tinderbox User
|
56af756b6c
|
update copyright notice
|
2014-02-14 23:46:27 +00:00 |
|
Evan Hunt
|
f2ea8c2f96
|
[master] updated published drafts
|
2014-02-14 08:53:06 -08:00 |
|
Mark Andrews
|
393fd55d91
|
3313. [protocol] Add TLSA record type. [RT #28989]
|
2012-04-26 12:22:49 +10:00 |
|