Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove two mutexes by replacing getservbyname() and getservbyport() | 2007-02-15 | 1 | -23/+21 | |
| | | | | | | calls with their reentrant versions. OK millert@. | ||||
* | change semantics of ff01::/16 to interface local multicast | 2006-11-17 | 1 | -3/+3 | |
| | | | | | | (to sync up with more recent IPv6 spec) ok from: deraadt mcbride | ||||
* | Remove a check about whether sa->sa_len is equal to salen from | 2005-06-19 | 1 | -4/+1 | |
| | | | | | | | getnameinfo(3). POSIX doesn't require this and it breaks code that doesn't handle it. "I think this is safe" millert@ | ||||
* | ansify. ok deraadt@ moritz@ | 2005-03-25 | 1 | -20/+6 | |
| | |||||
* | unused variables | 2004-09-15 | 1 | -3/+1 | |
| | |||||
* | major bump to libc and libpthread to break the dependency of a | 2004-06-07 | 1 | -2/+2 | |
| | | | | | | particular implementation of libpthread for libc. libc no longer needs pthread.h to compile. OK millert@, brad@, tedu@ | ||||
* | bug library/3297: lib/libc/net/get{addr,name}info should share mutex | 2003-07-21 | 1 | -2/+6 | |
| | | | | 'Looks right' deraadt@ | ||||
* | thread safer libc (note: safer, not safe) | 2003-01-28 | 1 | -1/+8 | |
| | | | | | | | | | | Access to the global _res structure replaced by pointers to a per thread instance. If unthreaded the pointer is to the global structure. Also replaced a 64k stack array with malloc-ed memory so threaded aps (with a default 64k stack) have a chance at working. ok deraadt@ | ||||
* | ntohs() returns unsigned value | 2002-06-27 | 1 | -2/+2 | |
| | |||||
* | more strlcpy and snprintf | 2002-05-22 | 1 | -7/+7 | |
| | |||||
* | Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree) | 2002-02-17 | 1 | -3/+3 | |
| | |||||
* | Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | 2002-02-16 | 1 | -2/+2 | |
| | |||||
* | make NI_WITHSCOPEID a default (always on), to synchronize with recent 2553bis. | 2001-11-15 | 1 | -24/+20 | |
| | | | | sync with kame. | ||||
* | sync with kame better. open some renaming #defines (ENI_xx). | 2001-11-14 | 1 | -42/+27 | |
| | |||||
* | cope with negative return value from snprintf. | 2001-08-20 | 1 | -12/+25 | |
| | |||||
* | fix off-by-1 error. | 2000-09-25 | 1 | -9/+8 | |
| | | | | From: Pavel Kankovsky <peak@argo.troja.mff.cuni.cz> | ||||
* | correct ENI_SALEN case to meet rfc2553bis. | 2000-06-12 | 1 | -3/+3 | |
| | |||||
* | correct behavior against invalid sockaddr. previous code may return 0 | 2000-06-12 | 1 | -9/+9 | |
| | | | | | (success) on invalid sockaddr. sync with rfc2553bis regarding to getnameinfo error code. (sync with kame) | ||||
* | correct type of 2nd argument to meet RFC2553. (this should raise no ABI | 2000-05-15 | 1 | -6/+6 | |
| | | | | problem due to type promotion). PR 1228. | ||||
* | const poisoning | 2000-04-26 | 1 | -16/+21 | |
| | |||||
* | bring in latest KAME implementation. | 2000-04-26 | 1 | -73/+112 | |
| | | | | | | conforms to draft-ietf-ipngwg-scopedaddr-format-01.txt. behavior change: returns numeric scopeid if we can't convert to string removed #if 0'ed portion which we will never revisit. | ||||
* | avoid unused variable by #ifdef | 2000-03-13 | 1 | -3/+6 | |
| | |||||
* | don't process NI_NOFQDN, since the currently coded behavior is not specwise | 2000-03-13 | 1 | -1/+3 | |
| | | | | correct. | ||||
* | to synchronize with progress of discussion for post | 2000-02-17 | 1 | -2/+2 | |
| | | | | | | | | draft-ietf-ipngwg-scopedaddr-format-00.txt (will be 01), use "address%interface" notation for extended scoped IPv6 address. NOTE: the change affects link-local addresses only. I hope it to be the final change on it..... | ||||
* | add more comments from recent kame. | 2000-02-16 | 1 | -1/+14 | |
| | | | | | | | | prepare to swap extended scoped address notation. fe80::1%de0 is the most promised candidate, but since it is still very draft, i'm not sure when to switch - if you have any idea please let me know. in other words, do i allowed to change it every week? :-P (NOTE it is only for "extended" scoped address notation, which is not for daily use) | ||||
* | revise extended scoped address format support. delimiter and the order | 2000-02-09 | 1 | -18/+59 | |
| | | | | | | | | is changed, based on discussion in ipngwg scoped address cabal. past code: fe80::1@de0 now: de0%fe80::1 this will be in sync with next extended address format proposal (which should be final - I don't want to make this kind of change again). | ||||
* | remove #if 0'ed part. | 2000-01-17 | 1 | -24/+1 | |
| | |||||
* | allow reverse lookup for v4 loopbacknet (127.0.0.0/8). | 2000-01-05 | 1 | -1/+5 | |
| | |||||
* | replace NRL get{addr,name}info with KAME get{addr,name}info. | 1999-12-30 | 1 | -213/+233 | |
| | | | | | | | | removed functionality: new code will not return AF_LOCAL addrinfo struct. added funtionality: SOCK_RAW is permitted as ai_socktype (no servname allowed). draft-ietf-ipngwg-scopedaddr-format-00.txt | ||||
* | cleaned up | 1999-07-03 | 1 | -178/+210 | |
| | |||||
* | Fixed compilation problems. | 1999-06-23 | 1 | -1/+2 | |
| | |||||
* | Removed portability ifdefs. | 1999-06-23 | 1 | -338/+7 | |
| | |||||
* | Added some protocol independent interfaces (supposedly IPv6 support APIs, but | 1999-06-23 | 1 | -0/+562 | |
ones that are useful for all protocols, not just IPv6). |