Age | Commit message (Expand) | Author | Lines |
2020-09-03 | fix missing newline in herror output | Rich Felker | -1/+1 |
2020-08-30 | restore h_errno ABI compatibility with ancient binaries | Rich Felker | -0/+4 |
2020-08-24 | report res_query failures, including nxdomain/nodata, via h_errno | Rich Felker | -1/+15 |
2020-08-24 | make h_errno thread-local | Rich Felker | -4/+2 |
2020-08-05 | in hosts file lookups, honor first canonical name regardless of family | Rich Felker | -1/+1 |
2020-08-04 | in hosts file lookups, use only first match for canonical name | Rich Felker | -2/+7 |
2020-05-19 | fix return value of res_send, res_query on errors from nameserver | Rich Felker | -1/+1 |
2020-05-19 | fix handling of errors resolving one of paired A+AAAA query | Rich Felker | -4/+7 |
2020-05-18 | set AD bit in dns queries, suppress for internal use | Rich Felker | -0/+3 |
2020-02-22 | use __socketcall to simplify socket() | Rich Felker | -5/+5 |
2019-12-17 | hook recvmmsg up to SO_TIMESTAMP[NS] fallback for pre-time64 kernels | Rich Felker | -6/+14 |
2019-12-17 | implement SO_TIMESTAMP[NS] fallback for kernels without time64 versions | Rich Felker | -0/+63 |
2019-08-07 | fix regression in recvmmsg with no timeout | Rich Felker | -1/+1 |
2019-07-31 | get/setsockopt: add fallback for new time64 SO_RCVTIMEO/SO_SNDTIMEO | Rich Felker | -2/+57 |
2019-07-29 | recvmmsg: add time64 syscall support, decouple 32-bit time_t | Rich Felker | -0/+18 |
2019-03-13 | handle labels with 8-bit byte values in dn_skipname | Ryan Fairfax | -2/+5 |
2019-02-20 | fix spurious undefined behavior in getaddrinfo | Rich Felker | -3/+2 |
2019-02-20 | fix invalid free of partial addrinfo list with multiple services | Rich Felker | -1/+1 |
2018-10-04 | allow freeaddrinfo of arbitrary sublists of addrinfo list | Rich Felker | -8/+25 |
2018-09-19 | fix getaddrinfo regression with AI_ADDRCONFIG on some configurations | Rich Felker | -1/+10 |
2018-09-12 | reduce spurious inclusion of libc.h | Rich Felker | -13/+4 |
2018-09-12 | remove or make static various unused __-prefixed symbols | Rich Felker | -7/+3 |
2018-09-12 | apply hidden visibility to various remaining internal interfaces | Rich Felker | -7/+8 |
2018-09-12 | overhaul internally-public declarations using wrapper headers | Rich Felker | -16/+2 |
2018-09-12 | move __res_msend_rc declaration to lookup.h | Rich Felker | -1/+1 |
2018-09-12 | move and deduplicate declarations of __dns_parse to make it checkable | Rich Felker | -2/+3 |
2018-09-12 | fix issues from public functions defined without declaration visible | Rich Felker | -2/+7 |
2018-09-02 | fix stack-based oob memory clobber in resolver's result sorting | Rich Felker | -1/+1 |
2018-07-14 | implement getaddrinfo's AI_ADDRCONFIG flag | Rich Felker | -0/+39 |
2018-07-11 | resolver: don't depend on v4mapped ipv6 to probe routability of v4 addrs | Rich Felker | -15/+32 |
2018-06-26 | inet_ntop: do not compress single zeros in IPv6 | Arthur Jones | -1/+1 |
2018-06-26 | resolver: omit final dot (root/suppress-search) in canonical name | Rich Felker | -0/+4 |
2017-11-09 | fix getaddrinfo error code for non-numeric service with AI_NUMERICSERV | A. Wilcox | -1/+1 |
2017-10-18 | in dns parsing callback, enforce MAXADDRS to preclude overflow | Rich Felker | -0/+1 |
2017-09-06 | don't treat numeric port strings as servent records in getservby*() | Rich Felker | -0/+10 |
2017-04-21 | fix regression in support for resolv.conf attempts option | Rich Felker | -2/+2 |
2017-04-11 | fix read past end of buffer in getaddrinfo backend | Rich Felker | -2/+2 |
2017-03-14 | fix possible fd leak, unrestored cancellation state on dns socket fail | Rich Felker | -1/+5 |
2016-09-24 | fix getservby*_r result pointer value on error | Daniel Sabogal | -0/+3 |
2016-09-24 | remove dead case in gethostbyname2_r | Daniel Sabogal | -2/+0 |
2016-09-16 | fix if_indextoname error case | Daniel Sabogal | -1/+6 |
2016-07-06 | remove obsolete and unused gethostbyaddr implementation | Rich Felker | -52/+0 |
2016-06-29 | refactor name_from_dns in hostname lookup backend | Natanael Copa | -14/+13 |
2016-06-29 | in performing dns lookups, check result from res_mkquery | Natanael Copa | -0/+4 |
2016-06-27 | fix misaligned address buffers in gethostbyname[2][_r] results | Rich Felker | -7/+7 |
2016-05-04 | fix incorrect protocol name and number for egp | Andrew Kelley | -1/+1 |
2016-04-18 | remove dead store in res_msend | Petr Vaněk | -1/+0 |
2016-03-24 | fix gethostbyaddr_r to fill struct hostent.h_length as appropriate | Timo Teräs | -0/+1 |
2016-03-02 | handle non-matching address family entries in hosts file | Rich Felker | -3/+11 |
2016-01-28 | reuse parsed resolv.conf in dns core to avoid re-reading/re-parsing | Rich Felker | -16/+22 |