aboutsummaryrefslogtreecommitdiff
path: root/dns/wdns
Commit message (Collapse)AuthorAgeFilesLines
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* dns/wdns: Upgrade to version 0.11.0Don Lewis2022-04-123-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improve support for CAA records. (CAA was previously rendered as a "generic" rdata type.) * Bug fix for NSEC/NSEC3/CSYNC: do not output empty rrtype bitmaps per RFC6840 section 6.4. * Fix parsing of A6 records that ommit and address portion. Correct parsing of A6 records with prefix length 0. Correct handling of A6 address bytes. The address bytes of an A6 record are an address suffix relative to the prefix represented by the domain name, and so must be copied to and from the lower order bytes of the internal address representation. These A6 code updates were for the purposes of clearing "round trip" test errors in the existing code base. (A6 is deprecated and was moved to historic status.) * Fix bug in IPv6 prefix length processing in _wdns_str_to_rdata_ubuf(). * Add support for SVCB and HTTPS resource record types. This is based on an Internet-Draft but is widely used in the real world. https://datatracker.ietf.org/doc/html/draft-ietf-dnsop-svcb-https-08 Bump PORTREVISION of dependent ports due to shared library version change. Sponsored by: DomainTools
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Upgrade dns/wdns to version 0.10.0:Don Lewis2019-12-053-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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. Add python as a build dependency. Pet portlint (USES vs. USE ordering). Sponsored by: Farsight Security Inc. Notes: svn path=/head/; revision=519111
* Fix OPTIONS_DEFAULT: remove EXAMPLES which is added by frameworkSunpoet Po-Chuan Hsieh2017-05-281-1/+0
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=441953
* Upgrade dns/wdns to version 0.9.1:Don Lewis2017-01-043-9/+13
| | | | | | | | | | | | | | | | | * t/: Fix format specifiers for size_t in some tests. * Add README.md. * Don't install the compiled example programs. Optionally install source code for example programs under ${EXAMPLESDIR}. Define TEST_TARGET. Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=430537
* Upgrade dns/wdns to version 0.9.0:Don Lewis2016-04-202-3/+3
| | | | | | | | | | | | | | | | | | * Support for new rrtypes: - CDNSKEY and CDS (RFC 7344) - CSYNC (RFC 7477) - EUI48 and EUI64 (RFC 7043) - OPENPGPKEY (draft-ietf-dane-openpgpkey) - TLSA (RFC 6698) - URI (RFC 7553) * Added new rrtype mnemonics: CDNSKEY, CSYNC, EUI48, EUI64, GID, L32, L64, LP, NID, OPENPGPKEY, TLSA, UID, UINFO, UNSPEC. Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=413670
* Update to version 0.8.1:Don Lewis2016-02-262-3/+3
| | | | | | | | | | * Allow compressed <domain-name> record data fields in all supported record types (#12). Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=409638
* Upgrade to wdns version 0.8.0.Don Lewis2015-10-282-3/+3
| | | | | | | | | | | | | | wdns (0.8.0) [ Henry Stern ] * wdns_str_to_rcode(): New function. * wdns_str_to_name_case(): New function. Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=400368
* Upgrade to 0.7.0:Don Lewis2015-09-233-4/+4
| | | | | | | | | | | | | | | [ Henry Stern ] * wdns_str_to_rdata(): New function. * wdns_str_to_rrclass(): New function. [ Robert Edmonds ] * examples/wdns-dump-file: New utility. Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=397665
* Add LICENSE_FILE (and bump PORTREVISION).Don Lewis2015-04-061-2/+3
| | | | | | | | | | | Convert to use MASTER_SIGHTS_FARSIGHT. Differential Revision: https://reviews.freebsd.org/D2235 Approved by: mat (mentor) Sponsored by: Farsight Security, Inc. Notes: svn path=/head/; revision=383420
* MASTER_SITE dl.farsightsecurity.com only allows https downloads.Don Lewis2015-01-101-4/+3
| | | | | | | | | | | | | Mirror the distfile on LOCAL as a http backup for clients that can't use https. Use INSTALL_TARGET=install-strip instead of ${STRIP_CMD}. Differential Revision: https://reviews.freebsd.org/D1473 Approved by: mat (mentor) Notes: svn path=/head/; revision=376669
* - Update to 0.6.0Martin Wilke2014-06-053-7/+6
| | | | | | | | PR: 190620 Submitted by: maintainer Notes: svn path=/head/; revision=356560
* wdns is a low-level DNS library. It contains a fast DNS message parserMartin Wilke2014-06-034-0/+38
and various utility functions for manipulating wire-format DNS data. WWW: https://github.com/farsightsec/wdns PR: ports/190552 Notes: svn path=/head/; revision=356309