summaryrefslogtreecommitdiffstats
path: root/lib/libc/asr/getnetnamadr_async.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Do not take external buffers for storing DNS responses in the internaleric2013-04-301-3/+3
| | | | | 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-4/+4
|
* Saner implementation for self-contained hostent and netent, and alsoeric2012-11-241-69/+77
| | | | a couple of fixes.
* knferic2012-11-241-10/+10
|
* make separate structures for pack and unpackeric2012-11-241-3/+3
|
* unused variableseric2012-09-071-2/+2
|
* When building dynamic hostent and netent, allocate a single linear buffer toeric2012-08-191-35/+32
| | | | | | 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.
* same code update and fix as for gethostnamadr_asynceric2012-07-101-55/+77
|
* Import asr, an experimental async resolver implementation.eric2012-04-141-0/+418
The idea is to eventually replace the existing resolver with something better. Time to start working on it in tree. ok deraadt@