-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' for the 0.10.0 release
- Loading branch information
Showing
32 changed files
with
658 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,38 @@ | ||
wdns (0.10.0) | ||
|
||
* Handle corner case of NSEC3 hash field with length zero. | ||
|
||
* Preserve name case when parsing rdata strings. | ||
|
||
* Fix printing of bitmap entries for rrtypes larger than 255. | ||
Improve rrtype sorting. | ||
|
||
* Preserve character-string boundaries when formatting TXT rdata. | ||
|
||
* Add ./configure --with-coverage option to build with code coverage | ||
and make targets: clean-coverage to remove the coverage data and results | ||
and report-coverage to generate report (after running the code such as | ||
with "make check"). | ||
|
||
* Configure check for python which is used to generate some of the C code. | ||
|
||
* Lots of compiler warning cleanups. | ||
|
||
* Unit testing improvements and additional tests added. | ||
|
||
* Added library versioning API: wdns_get_version() and | ||
wdns_get_version_number() available at run-time and WDNS_LIBRARY_VERSION | ||
and WDNS_LIBRARY_VERSION_NUMBER for compile-time. | ||
|
||
-- Farsight Security, Inc. <[email protected]> Wed, 27 Nov 2019 13:03:14 -0500 | ||
|
||
wdns (0.9.1) | ||
|
||
* t/: Fix format specifiers for size_t in some tests. | ||
* t/: Fix format specifiers for size_t in some tests. | ||
|
||
* Add README.md. | ||
* Add README.md. | ||
|
||
* Don't install the compiled example programs. | ||
* Don't install the compiled example programs. | ||
|
||
-- Farsight Security <[email protected]> Tue, 3 Jan 2017 17:56:25 +0000 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
wdns (0.10.0-1) debian-fsi; urgency=medium | ||
|
||
* New release. | ||
|
||
-- Farsight Security, Inc. <[email protected]> Wed, 27 Nov 2019 13:03:14 -0500 | ||
|
||
wdns (0.9.1-1) wheezy-farsightsec; urgency=medium | ||
|
||
* New release. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ChangeLog | ||
COPYRIGHT | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include <sys/types.h> | ||
#include <sys/stat.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
#include <wdns.h> | ||
|
||
int | ||
main(void) { | ||
|
||
/* to do compile-time checking, do something like the following: */ | ||
#if WDNS_LIBRARY_VERSION_NUMBER > 9001 | ||
printf("your install of libwdns supports compile-time versioning "); | ||
printf("(WDNS_LIBRARY_VERSION_NUMBER == %lu)\n", | ||
WDNS_LIBRARY_VERSION_NUMBER); | ||
/* to do run-time checking, do something like the following: */ | ||
printf("libwdns run-time version is %d\n", wdns_get_version_number()); | ||
|
||
/* and to emit a stringified version number, do this: */ | ||
printf("this program was linked against libwdns version %s\n", | ||
wdns_get_version()); | ||
return (EXIT_SUCCESS); | ||
#else | ||
printf("your install of libwdns predates versioning, consider an upgrade\n"); | ||
return (EXIT_SUCCESS); | ||
#endif | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.