Age | Commit message (Expand) | Author | Files | Lines |
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 |
2012-05-16 | fix misplaced semicolon in preprocessor directive (#undef h_errno) | Rich Felker | 1 | -1/+1 |
2012-05-12 | use __h_errno_location for h_errno | Rich Felker | 2 | -0/+9 |
2012-04-01 | improve name lookup performance in corner cases | Rich Felker | 2 | -2/+2 |
2012-02-23 | fix for previous incorrect fix of cancellation in dns lookups | Rich Felker | 1 | -3/+4 |
2012-02-11 | fix default nameserver when resolv.conf doesn't exist | Rich Felker | 1 | -1/+2 |
2012-02-11 | fix illegal goto out of cleanup context in dns lookups | Rich Felker | 1 | -3/+3 |
2011-09-21 | make dns lookups (and thus getaddrinfo) cancellable | Rich Felker | 1 | -4/+11 |
2011-09-21 | use poll rather than select in dns lookups (also clock_gettime) | Rich Felker | 1 | -12/+10 |
2011-09-13 | remove some stray trailing space characters | Rich Felker | 2 | -2/+2 |
2011-08-03 | implement if_nameindex and if_freenameindex | Rich Felker | 2 | -0/+65 |
2011-08-01 | fix wrong messages in gai_strerror | Rich Felker | 1 | -0/+2 |
2011-08-01 | port numbers should always be interpreted as decimal | Rich Felker | 1 | -1/+1 |
2011-07-12 | "implement" getnetbyaddr and getnetbyname | Rich Felker | 1 | -0/+12 |
2011-06-30 | res_search symbol, aliased to res_query for now (better than nothing) | Rich Felker | 1 | -0/+3 |
2011-04-25 | fix bug in ipv6 parsing that prevented parsing a lone "::" | Rich Felker | 1 | -4/+1 |
2011-04-25 | ipv6 parsing code (formerly dummied-out) | Rich Felker | 2 | -8/+62 |
2011-04-21 | fix bogus return values for inet_pton | Rich Felker | 1 | -2/+2 |
2011-04-20 | disallow blank strings as service or host name | Rich Felker | 1 | -0/+3 |
2011-04-20 | fix bugs in ipv4 parsing | Rich Felker | 1 | -1/+2 |