summaryrefslogtreecommitdiffstats
path: root/lib/libc/asr/async_resolver.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sync with recent name changes;jmc2013-08-081-373/+0
|
* Make some symbols static and prefix all visible symbols with asr_eric2013-07-121-24/+24
| | | | | | to prevent collisions with third-party programs. suggested by sthen@, ok theo@
* Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarzetedu2013-06-051-3/+3
|
* various small fixes;jmc2013-04-301-4/+5
|
* Do not take external buffers for storing DNS responses in the internaleric2013-04-301-8/+10
| | | | | async API. That is actually useless and it makes the code more complicated. The required buffers are always allocated when needed.
* space cleanup; ok ericderaadt2013-04-011-13/+13
|
* Do not assume local nameserver if resolv.conf doesn't exist, just useeric2013-03-301-6/+5
| | | | | | /etc/hosts. discussed with deraadt@
* explicitely -> explicitly;jmc2013-03-271-2/+2
|
* Only use the search domains for DNS lookups, as the current resolver does.eric2013-03-271-4/+17
| | | | | Better not diverge too much in behavior at this point. Typo fix and doc update while there.
* YP is now supported.eric2012-09-061-3/+1
|
* remove unused member, reorganize a bit and sync manpage.eric2012-09-061-20/+19
|
* When building dynamic hostent and netent, allocate a single linear buffer toeric2012-08-191-12/+6
| | | | | | hold both the structure and the data. The freehostent() and freenetent() API functions are not needed anymore. While there, ensure that the constructed addr and alias lists are really NULL terminated.
* ensure that async_run() and async_run_sync() always preserve errno.eric2012-08-181-2/+10
|
* tweak previous;jmc2012-04-151-16/+17
|
* Import asr, an experimental async resolver implementation.eric2012-04-141-0/+358
The idea is to eventually replace the existing resolver with something better. Time to start working on it in tree. ok deraadt@