mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
63eef36fd6
nslookups in a non-blocking manner. The adns distribution also comes with some utilities similar to dig, host, nslookup, etc. The port that I'm importing rips out the ${PORTOBJFORMAT} checking and also trims the extra stuff in pkg/DESCR, which the original submission contained. PR: 17510 Submitted by: Kostya Lukin <lukin@sapa.ivcme.elektra.ru> Reviewed by: billf, mharo
16 lines
644 B
Plaintext
16 lines
644 B
Plaintext
adns is a resolver library for C (and C++) programs. In contrast with
|
|
the existing interfaces, gethostbyname et al and libresolv, it has the
|
|
following features:
|
|
|
|
* It is reasonably easy to use for simple programs which just want
|
|
to translate names to addresses, look up MX records, etc.
|
|
* It can be used in an asynchronous, non-blocking, manner. Many
|
|
queries can be handled simultaneously.
|
|
|
|
Technical note: adns requires a real nameserver like BIND or
|
|
Dents running on the same system or a nearby one, which must be
|
|
willing to provide `recursive service'. I.e., adns is a `stub
|
|
resolver'.
|
|
|
|
WWW: http://www.chiark.greenend.org.uk/~ian/adns/
|