summaryrefslogtreecommitdiff
path: root/src/network
AgeCommit message (Expand)AuthorLines
2017-10-18in dns parsing callback, enforce MAXADDRS to preclude overflowRich Felker-0/+1
2017-09-06don't treat numeric port strings as servent records in getservby*()Rich Felker-0/+10
2017-04-21fix regression in support for resolv.conf attempts optionRich Felker-2/+2
2017-04-11fix read past end of buffer in getaddrinfo backendRich Felker-2/+2
2017-03-14fix possible fd leak, unrestored cancellation state on dns socket failRich Felker-1/+5
2016-09-24fix getservby*_r result pointer value on errorDaniel Sabogal-0/+3
2016-09-24remove dead case in gethostbyname2_rDaniel Sabogal-2/+0
2016-09-16fix if_indextoname error caseDaniel Sabogal-1/+6
2016-07-06remove obsolete and unused gethostbyaddr implementationRich Felker-52/+0
2016-06-29refactor name_from_dns in hostname lookup backendNatanael Copa-14/+13
2016-06-29in performing dns lookups, check result from res_mkqueryNatanael Copa-0/+4
2016-06-27fix misaligned address buffers in gethostbyname[2][_r] resultsRich Felker-7/+7
2016-05-04fix incorrect protocol name and number for egpAndrew Kelley-1/+1
2016-04-18remove dead store in res_msendPetr Vaněk-1/+0
2016-03-24fix gethostbyaddr_r to fill struct hostent.h_length as appropriateTimo Teräs-0/+1
2016-03-02handle non-matching address family entries in hosts fileRich Felker-3/+11
2016-01-28reuse parsed resolv.conf in dns core to avoid re-reading/re-parsingRich Felker-16/+22
2016-01-28fix uninitialized variable in new resolv.conf parserRich Felker-1/+1
2016-01-28add support for search domains to dns resolverRich Felker-1/+41
2016-01-28fix handling of dns response codesRich Felker-1/+2
2016-01-28fix logic for matching search/domain keywords in resolv.confRich Felker-1/+1
2016-01-28factor resolv.conf parsing out of res_msend to its own fileRich Felker-60/+126
2016-01-17fix if_nametoindex return value when socket open failsRon Yorston-1/+1
2016-01-06add missing protocols to protoent lookup functionsTimo Teräs-1/+16
2015-11-30properly handle point-to-point interfaces in getifaddrs()Jo-Philipp Wich-3/+16
2015-10-26getnameinfo: make size check not fail for bigger sizesHauke Mehrtens-2/+2
2015-10-26safely handle failure to open hosts, services, resolv.conf filesRich Felker-4/+29
2015-09-25avoid attempting to lookup IP literals as hostnamesRich Felker-27/+32
2015-09-25make getaddrinfo return error if both host and service name are nullRich Felker-0/+2
2015-09-11fix uninitialized scopeid in lookups from hosts file and ip literalsTimo Teräs-2/+2
2015-07-08fix negated return value of ns_skiprr, breakage in related functionsRich Felker-1/+1
2015-03-23fix internal buffer overrun in inet_ptonRich Felker-2/+3
2015-02-10make protocol table zero byte separated and add ipv6 protocolsTimo Teräs-22/+26
2015-02-07make getaddrinfo support SOCK_RAW and other socket typesRich Felker-34/+42
2014-12-17add basic dns record parsing functionsRich Felker-0/+171
2014-09-05fix potential read past end of buffer in getnameinfo service name lookupRich Felker-1/+1
2014-09-05remove incorrect and useless check in network service name lookup codeRich Felker-1/+0
2014-09-05remove an extra layer of buffer copying in getnameinfo reverse dnsRich Felker-3/+2
2014-09-04fix dn_expand empty name handling and offsets to 0Szabolcs Nagy-6/+9
2014-07-29reimplement if_nameindex and getifaddrs using netlinkTimo Teräs-184/+411
2014-07-26add support for LC_TIME and LC_MESSAGES translationsRich Felker-2/+6
2014-06-24add routing protocols to getprotoent-family functionsTimo Teräs-0/+2
2014-06-21implement result address sorting in the resolver (getaddrinfo, etc.)Rich Felker-0/+136
2014-06-20fix gethostby*_r result pointer value on errorTimo Teräs-0/+3
2014-06-20fix sendmmsg emulation return value for zero-length vectorRich Felker-0/+1
2014-06-19implement sendmmsg and recvmmsgRich Felker-0/+44
2014-06-07avoid spurious lookup failures from badly-behaved nameserversRich Felker-5/+22
2014-06-06optimize SOCK_CLOEXEC fallback for socket functionRich Felker-2/+2
2014-06-06add SOCK_CLOEXEC fallback for socketpair on old kernelsRich Felker-1/+19
2014-06-06implement dn_comp RFC 1035 domain name compressionSzabolcs Nagy-1/+102