summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/getaddrinfo.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* simplify the 'family' option parser and make it more evident what we'repyr2009-06-041-24/+6
* Add a resolv.conf option to specify the order in which getaddrinfopyr2009-06-041-7/+34
* Typos.ray2007-05-201-3/+3
* Remove no-op code. From tbert.ray2007-05-181-3/+1
* Improve reentrancy by not using global variable. Removes tworay2007-05-171-31/+11
* Use size_t for strlen results.ray2007-05-121-4/+6
* Clean up macros according to style. From tbert <bret dot lambert at gmail>.ray2007-05-121-27/+27
* Use syslog_r instead of syslog in getaddrinfo. Slowly makingray2007-05-101-4/+9
* strlen(3) returns size_t.ray2007-02-181-4/+6
* Remove duplicate code. No functional change.ray2007-02-171-39/+22
* Remove two mutexes by replacing getservbyname() and getservbyport()ray2007-02-151-9/+8
* Remove int pretending to be a size_t.ray2007-02-141-5/+2
* change semantics of ff01::/16 to interface local multicastitojun2006-11-171-2/+3
* Clarify strlcpy code by explicitly naming variable `len' andray2006-04-181-5/+6
* Remove str2number(), use strtonum(3) instead.ray2006-04-141-44/+20
* Pass size of correct variable to memset().ray2006-03-221-2/+2
* fix spelling mistake (in comment);jmc2005-07-181-2/+2
* make the resolver stat resolv.conf and update if it changes.tedu2005-03-301-5/+5
* ansify. ok deraadt@ moritz@otto2005-03-251-80/+31
* major bump to libc and libpthread to break the dependency of amarc2004-06-071-2/+2
* implement RFC3493 AI_NUMERICSERV. tedu okitojun2004-04-141-46/+14
* bug library/3297: lib/libc/net/get{addr,name}info should share mutexmarc2003-07-211-2/+3
* fill ai_canonname field for numeric hostname, by the given hostname.itojun2003-05-141-8/+26
* If hostname != NULL, hostname is not a numeric string, and AI_NUMERICHOSTjason2003-03-171-3/+3
* strlcpy, check retval from sprintfitojun2003-03-041-2/+2
* thread safer libc (note: safer, not safe)marc2003-01-281-29/+47
* allocate 64K recieve buffer for DNS responses.itojun2002-08-271-18/+33
* drop AAAA reply with IPv4 mapped address. sync w/kameitojun2002-08-221-1/+9
* kill more strcpyderaadt2002-07-251-5/+4
* have _THREAD_PRIVATE_MUTEX for DNS/YP/hosts lookup.itojun2002-07-241-3/+16
* more type pedantitojun2002-07-011-2/+2
* lint clean (and don't mixup signed/unsigned). from martin husemannitojun2002-07-011-12/+12
* make more pedantic check on strtoul. from deraadt, sync w/kameitojun2002-07-011-8/+12
* correct port range check. from deraadt. sync w/kame. bind-bugs have alread...itojun2002-06-291-2/+3
* %d/%u mixup (in #ifdef DEBUG)itojun2002-06-271-2/+2
* correct bad practice in the code - it uses two changing variablesitojun2002-06-261-10/+7
* Manual cleanup of remaining userland __P use (excluding packages maintained o...millert2002-02-171-23/+21
* Part one of userland __P removal. Done with a simple regexp with some minor ...millert2002-02-161-16/+16
* label abort() from inside library as ILLEGALderaadt2002-01-021-3/+3
* use snprintf, not sprintf. sync with kameitojun2001-08-201-2/+2
* use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok.lebel2001-06-271-3/+2
* support EDNS0 (RFC2671) buffer size notification on DNS queries.itojun2001-06-111-1/+4
* on /etc/hosts lookup, set "official host name" (the leftmost hostname)itojun2000-08-311-4/+7
* Wallderaadt2000-08-221-2/+3
* reject empty scopeid/numeric portname. sync with kame.itojun2000-07-091-9/+16
* return EAI_NODATA, instead of EAI_NONAME, on name resolution errors.itojun2000-07-051-18/+18
* translate DNS error code into getaddrinfo error code (EAI_xxx). PR 1229.itojun2000-05-151-2/+27
* remove unused struct def. more sanity check for NULL.itojun2000-04-271-16/+16
* add $KAME$ for future version trackingitojun2000-04-261-1/+2
* remove #if 0'ed portion which we will never revisit (no behavior change).itojun2000-04-261-14/+1