summaryrefslogtreecommitdiffstats
path: root/lib/libc/asr/asr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Only use the search domains for DNS lookups, as the current resolver does.eric2013-03-271-3/+1
| | | | | Better not diverge too much in behavior at this point. Typo fix and doc update while there.
* knferic2012-11-241-24/+24
|
* tweak optionseric2012-09-091-5/+10
|
* allow to disable some features at build timeeric2012-09-091-5/+48
|
* cleanup asr_debug.ceric2012-09-091-6/+6
|
* use proper macros for debug traces.eric2012-09-091-91/+38
|
* return value has no use; make it void.eric2012-09-071-23/+18
| | | | fix comment.
* config parsing is done in one pass now. no need to use callback anymore.eric2012-09-061-11/+9
|
* add a strsplit() helper to factorize code a bit.eric2012-09-061-28/+24
|
* Get rid of the hostaddr_async subquery and merge its behavioureric2012-09-051-10/+3
| | | | | directly into getaddrinfo_async_run. Simplifies everything by a great deal.
* Make hostaddr_async() return a linked list of struct addrinfo. Firsteric2012-09-051-9/+7
| | | | | | round of a getaddrinfo_async() simplification. The goal is to make YP support easier to add, and eventually remove the whole hostaddr_async subquery.
* ensure that async_run() and async_run_sync() always preserve errno.eric2012-08-181-6/+12
|
* Create a new resolver for each thread. It will be done differentlyeric2012-04-151-14/+24
| | | | | eventually, but it's enough for now to make the blocking API fully thread-safe without locking.
* only define DEBUG internallyeric2012-04-141-6/+6
|
* Import asr, an experimental async resolver implementation.eric2012-04-141-0/+1102
The idea is to eventually replace the existing resolver with something better. Time to start working on it in tree. ok deraadt@