aboutsummaryrefslogtreecommitdiffstats
path: root/dns/dnsjava
Commit message (Collapse)AuthorAgeFilesLines
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-0/+1
| | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
* Update to 2.0.6edwin2008-04-292-6/+5
|
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* - Update to 2.0.3 [1]hq2007-02-112-5/+5
| | | | | | - Release maintainership Reported by: portscout [1]
* Update to 2.0.1hq2006-06-222-4/+4
| | | | Reported by: portscout
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* - Fix build [1]hq2004-12-091-1/+10
| | | | | | - Link API documentation with JDK Standard API documentation, if installed Reported by: krion via pointyhat [1]
* dnsjava is an implementation of DNS in Java. It supports all defined recordhq2004-11-193-0/+74
types (including the DNSSEC types), and unknown types. It can be used for queries, zone transfers, and dynamic updates. It includes a cache which can be used by clients, and a minimal implementation of a server. It supports TSIG authenticated messages, partial DNSSEC verification, and EDNS0. dnsjava provides functionality above and beyond that of the InetAddress class. Since it is written in pure Java, dnsjava is fully threadable, and in many cases is faster than using InetAddress. dnsjava provides both high and low level access to DNS. The high level functions perform queries for records of a given name, type, and class, and return an array of records. There is also a clone of InetAddress, which is even simpler. A cache is used to reduce the number of DNS queries sent. The low level functions allow direct manipulation of DNS messages and records, as well as allowing additional resolver properties to be set. WWW: http://www.xbill.org/dnsjava/