summaryrefslogtreecommitdiff
path: root/src/network
AgeCommit message (Expand)AuthorLines
2022-10-19clean up dns_parse_callbackRich Felker-13/+13
2022-10-19dns response handling: don't treat too many addresses as an errorRich Felker-1/+1
2022-10-19dns response handling: ignore presence of wrong-type RRsRich Felker-2/+8
2022-10-19dns query core: detect udp truncation at recv timeRich Felker-4/+13
2022-10-19getaddrinfo dns lookup: use larger answer buffer to handle long CNAMEsRich Felker-3/+5
2022-09-22dns: implement tcp fallback in __res_msend query coreRich Felker-2/+117
2022-09-22res_send: use a temp buffer if caller's buffer is under 512 bytesRich Felker-1/+9
2022-09-21adapt res_msend DNS query core for working with multiple socketsRich Felker-6/+11
2022-09-20getaddrinfo: add EAI_NODATA error code to distinguish NODATA vs NxDomainRich Felker-6/+12
2022-09-19fix error cases in gethostbyaddr_rRich Felker-2/+3
2022-09-19remove impossible error case from gethostbyname2_rRich Felker-1/+0
2022-09-19fix return value of gethostnbyname[2]_r on result not foundRich Felker-1/+1
2022-09-19dns: treat names rejected by res_mkquery as nonexistent rather than errorRich Felker-1/+1
2022-09-19res_mkquery: error out on consecutive final dots in nameRich Felker-0/+1
2022-08-26dns: fail if ipv6 is disabled and resolv.conf has only v6 nameservesRich Felker-0/+5
2022-08-24fix fallback when ipv6 is disabled but resolv.conf has v6 nameservesRich Felker-1/+2
2022-08-01fix mishandling of errno in getaddrinfo AI_ADDRCONFIG logicRich Felker-0/+2
2022-06-03ensure distinct query id for parallel A and AAAA queries in resolverRich Felker-0/+3
2022-04-10fix incorrect parameter name in internal netlink.h RTA_OK macroOndrej Jirman-1/+1
2020-09-03fix missing newline in herror outputRich Felker-1/+1
2020-08-30restore h_errno ABI compatibility with ancient binariesRich Felker-0/+4
2020-08-24report res_query failures, including nxdomain/nodata, via h_errnoRich Felker-1/+15
2020-08-24make h_errno thread-localRich Felker-4/+2
2020-08-05in hosts file lookups, honor first canonical name regardless of familyRich Felker-1/+1
2020-08-04in hosts file lookups, use only first match for canonical nameRich Felker-2/+7
2020-05-19fix return value of res_send, res_query on errors from nameserverRich Felker-1/+1
2020-05-19fix handling of errors resolving one of paired A+AAAA queryRich Felker-4/+7
2020-05-18set AD bit in dns queries, suppress for internal useRich Felker-0/+3
2020-02-22use __socketcall to simplify socket()Rich Felker-5/+5
2019-12-17hook recvmmsg up to SO_TIMESTAMP[NS] fallback for pre-time64 kernelsRich Felker-6/+14
2019-12-17implement SO_TIMESTAMP[NS] fallback for kernels without time64 versionsRich Felker-0/+63
2019-08-07fix regression in recvmmsg with no timeoutRich Felker-1/+1
2019-07-31get/setsockopt: add fallback for new time64 SO_RCVTIMEO/SO_SNDTIMEORich Felker-2/+57
2019-07-29recvmmsg: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+18
2019-03-13handle labels with 8-bit byte values in dn_skipnameRyan Fairfax-2/+5
2019-02-20fix spurious undefined behavior in getaddrinfoRich Felker-3/+2
2019-02-20fix invalid free of partial addrinfo list with multiple servicesRich Felker-1/+1
2018-10-04allow freeaddrinfo of arbitrary sublists of addrinfo listRich Felker-8/+25
2018-09-19fix getaddrinfo regression with AI_ADDRCONFIG on some configurationsRich Felker-1/+10
2018-09-12reduce spurious inclusion of libc.hRich Felker-13/+4
2018-09-12remove or make static various unused __-prefixed symbolsRich Felker-7/+3
2018-09-12apply hidden visibility to various remaining internal interfacesRich Felker-7/+8
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker-16/+2
2018-09-12move __res_msend_rc declaration to lookup.hRich Felker-1/+1
2018-09-12move and deduplicate declarations of __dns_parse to make it checkableRich Felker-2/+3
2018-09-12fix issues from public functions defined without declaration visibleRich Felker-2/+7
2018-09-02fix stack-based oob memory clobber in resolver's result sortingRich Felker-1/+1
2018-07-14implement getaddrinfo's AI_ADDRCONFIG flagRich Felker-0/+39
2018-07-11resolver: don't depend on v4mapped ipv6 to probe routability of v4 addrsRich Felker-15/+32
2018-06-26inet_ntop: do not compress single zeros in IPv6Arthur Jones-1/+1