summaryrefslogtreecommitdiffstats
path: root/lib/libc/asr/getaddrinfo_async.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improve error reporting in getnameinfo_async() and getaddrinfo_async().eric2012-08-181-37/+16
| | | | | | | | | | They do not have to deal with h_errno at all. Also, errno is only kept for EAI_SYSTEM. Small code cleanup while there. Adapt getnameinfo() and getaddrinfo() wrappers to correctly save errno and overwrite it in the EAI_SYSTEM case. General errno handling issue reported by mikeb@.
* properly report EAI_SERVICE when the given servname is not defined foreric2012-07-131-2/+4
| | | | the given protocol.
* Better handling of servname in getaddrinfo_async. Do not necessarilyeric2012-07-101-11/+16
| | | | | fail if there is no entry for a given protocol. Fix issue reported by early testers.
* fix a few warningseric2012-04-251-2/+2
|
* Import asr, an experimental async resolver implementation.eric2012-04-141-0/+500
The idea is to eventually replace the existing resolver with something better. Time to start working on it in tree. ok deraadt@