Age | Commit message (Expand) | Author | Files | Lines |
2014-01-06 | fix argument types for legacy function inet_makeaddr | Rich Felker | 1 | -2/+1 |
2013-12-20 | implement legacy function herror | Rich Felker | 1 | -0/+8 |
2013-12-12 | include cleanups: remove unused headers and add feature test macros | Szabolcs Nagy | 13 | -18/+3 |
2013-12-12 | remove an unnecessary check in inet_pton | Szabolcs Nagy | 1 | -2/+1 |
2013-11-30 | support mix of IPv4 and v6 nameservers in resolv.conf | Rich Felker | 1 | -5/+31 |
2013-11-27 | reject invalid address families in getaddrinfo | Rich Felker | 1 | -0/+3 |
2013-11-25 | remove duplicate includes from dynlink.c, strfmon.c and getaddrinfo.c | Szabolcs Nagy | 1 | -3/+0 |
2013-11-24 | Fix dn_comp prototype and add stub | Michael Forney | 1 | -0/+9 |
2013-11-23 | Fix dn_expand pointer following | Michael Forney | 1 | -1/+1 |
2013-11-20 | fix fd leak (missing close-on-exec) in getifaddrs | Rich Felker | 1 | -1/+1 |
2013-11-02 | fix regression in inet_aton due to misinterpretation of __ipparse return | Rich Felker | 2 | -3/+3 |
2013-10-23 | fix inet_pton | Szabolcs Nagy | 1 | -26/+19 |
2013-10-22 | fix __ipparse to parse the generic numbers-and-dots IPv4 format correctly | Szabolcs Nagy | 1 | -5/+12 |
2013-10-22 | fix inet_aton to accept the generic "numbers-and-dots" IPv4 address format | Szabolcs Nagy | 1 | -1/+4 |
2013-10-21 | split inet_addr and inet_ntoa back into their own files | Rich Felker | 3 | -16/+21 |
2013-10-19 | fix return value for inet_pton in ipv6 failure cases | Rich Felker | 1 | -6/+6 |
2013-08-23 | fix regression in dn_expand/reverse dns | Rich Felker | 1 | -1/+1 |
2013-08-14 | fix length computation in dn_expand | Rich Felker | 1 | -3/+5 |
2013-08-14 | de-duplicate dn_expand, fix return value and signature, clean up | Rich Felker | 2 | -48/+23 |
2013-07-25 | fix undefined strcpy call in inet_ntop | Rich Felker | 1 | -1/+1 |
2013-07-25 | make inet_ntop format v4-mapped ipv6 addresses properly | Rich Felker | 1 | -8/+14 |
2013-07-24 | make getaddrinfo with AF_UNSPEC and null host return both IPv4 and v6 | Rich Felker | 1 | -14/+23 |
2013-07-09 | fix missing SOCK_CLOEXEC in various functions that use sockets internally | Rich Felker | 4 | -4/+4 |
2013-07-01 | add stubs for additional legacy ether.h functions | Rich Felker | 1 | -0/+15 |
2013-06-25 | implement inet_lnaof, inet_netof, and inet_makeaddr | Rich Felker | 5 | -39/+55 |
2013-06-25 | add ether_aton[_r] and ether_ntoa[_r] functions | Rich Felker | 1 | -0/+43 |
2013-04-09 | getifaddrs: implement proper ipv6 netmasks | rofl0r | 1 | -2/+11 |
2013-04-06 | getifaddrs: remove unused label | rofl0r | 1 | -1/+0 |
2013-04-05 | getifaddrs: use if_nameindex to enumerate interfaces | rofl0r | 1 | -23/+9 |
2013-04-05 | getifaddrs: one less indent level | rofl0r | 1 | -30/+28 |
2013-04-05 | getifaddrs: less malloc | rofl0r | 1 | -55/+52 |
2013-04-05 | add getifaddrs | rofl0r | 1 | -0/+191 |
2013-04-04 | implement dn_skipname (legacy resolver function) | Rich Felker | 1 | -0/+12 |
2013-02-02 | dynamically allocate storage for gethostby* buffers | Rich Felker | 2 | -10/+32 |
2013-02-02 | fix blank ai_canonname from getaddrinfo for non-CNAMEs | Rich Felker | 1 | -1/+1 |
2013-02-02 | fix memory leak due to double call to getaddrinfo in gethostbyname* | Rich Felker | 1 | -1/+0 |
2013-02-02 | fix error returns in gethostby*_r functions | Rich Felker | 2 | -17/+10 |
2012-12-19 | add inet_network (required for wine) | rofl0r | 1 | -0/+11 |
2012-11-05 | improve SOCK_NONBLOCK/SOCK_CLOEXEC fallback code | Rich Felker | 1 | -1/+2 |
2012-09-29 | fix some more O_CLOEXEC/SOCK_CLOEXEC issues | Rich Felker | 1 | -3/+1 |
2012-09-29 | move accept4, dup3, and pipe2 to non-linux-specific locations | Rich Felker | 1 | -0/+9 |
2012-09-29 | emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernels | Rich Felker | 1 | -1/+14 |
2012-09-22 | fix getaddrinfo to accept port 0 (zero) | Rich Felker | 1 | -2/+2 |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | 9 | -11/+11 |
2012-07-22 | remove scanf dependency from getaddrinfo /etc/services support | Rich Felker | 1 | -5/+4 |
2012-07-22 | getaddrinfo /etc/services lookup support | Rich Felker | 1 | -3/+16 |
2012-07-22 | make getservby*_r return error code rather than -1 (and using errno) | Rich Felker | 2 | -19/+35 |
2012-07-21 | fix logic error for skipping failed interfaces in if_nameindex | Rich Felker | 1 | -8/+7 |
2012-07-14 | fix getservby*() with null pointer for protocol argument | Rich Felker | 2 | -0/+8 |
2012-07-12 | workaround another sendmsg kernel bug on 64-bit machines | Rich Felker | 1 | -0/+13 |