about summary refs log tree commit diff
path: root/src/network
Commit message (Expand)AuthorAgeFilesLines
* add routing protocols to getprotoent-family functionsTimo Teräs2014-06-241-0/+2
* implement result address sorting in the resolver (getaddrinfo, etc.)Rich Felker2014-06-212-0/+136
* fix gethostby*_r result pointer value on errorTimo Teräs2014-06-202-0/+3
* fix sendmmsg emulation return value for zero-length vectorRich Felker2014-06-201-0/+1
* implement sendmmsg and recvmmsgRich Felker2014-06-192-0/+44
* avoid spurious lookup failures from badly-behaved nameserversRich Felker2014-06-071-5/+22
* optimize SOCK_CLOEXEC fallback for socket functionRich Felker2014-06-061-2/+2
* add SOCK_CLOEXEC fallback for socketpair on old kernelsRich Felker2014-06-061-1/+19
* implement dn_comp RFC 1035 domain name compressionSzabolcs Nagy2014-06-061-1/+102
* accept trailing . and empty domain namesSzabolcs Nagy2014-06-063-12/+16
* fix the domain name length limit checksSzabolcs Nagy2014-06-053-8/+8
* fix multiple validation issues in dns response label parsingSzabolcs Nagy2014-06-051-4/+6
* fix missing function declarations in refactored ip literal parsing codeRich Felker2014-06-051-0/+1
* add support for reverse port lookups from services file to getnameinfoRich Felker2014-06-041-4/+35
* add support for reverse name lookups from hosts file to getnameinfoRich Felker2014-06-045-50/+122
* remove some dummy "ent" function aliases that duplicated real onesRich Felker2014-06-041-8/+0
* add support for ipv6 scope_id to getaddrinfo and getnameinfoRich Felker2014-06-043-8/+56
* fix if_nametoindex return value when interface does not existRich Felker2014-06-031-1/+1
* fix negative response and non-response handling for dns queriesRich Felker2014-06-031-1/+4
* fix some validation checks in dns response parsing codeRich Felker2014-06-031-2/+3
* remove cruft from old resolver and numeric ip parsingRich Felker2014-06-026-79/+49
* switch standard resolver functions to use the new dns backendRich Felker2014-06-024-309/+145
* fix uninitialized variable in new __res_msend dns functionRich Felker2014-06-021-0/+1
* implement new dns backend, res_send and other legacy resolver functionsRich Felker2014-06-026-18/+263
* add ipsec and tunneling protocols to getprotoent-family functionsTimo Teräs2014-06-021-0/+4
* fix off-by-one in checking hostname length in new resolver backendRich Felker2014-06-021-2/+2
* improve getservbyname_r using new resolver backendRich Felker2014-06-012-22/+16
* improve gethostbyname2_r using new resolver backendRich Felker2014-06-011-35/+22
* refactor getaddrinfo and add support for most remaining featuresRich Felker2014-05-314-228/+360
* add fallback emulation for accept4 on old kernelsRich Felker2014-02-211-1/+12
* add ipv6 and icmpv6 to getprotoent-family functionsRich Felker2014-02-131-1/+3
* fix typo in table for getprotoent that caused out-of-bound readsRich Felker2014-02-131-1/+1
* fix argument types for legacy function inet_makeaddrRich Felker2014-01-061-2/+1
* implement legacy function herrorRich Felker2013-12-201-0/+8
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-1213-18/+3
* remove an unnecessary check in inet_ptonSzabolcs Nagy2013-12-121-2/+1
* support mix of IPv4 and v6 nameservers in resolv.confRich Felker2013-11-301-5/+31
* reject invalid address families in getaddrinfoRich Felker2013-11-271-0/+3
* remove duplicate includes from dynlink.c, strfmon.c and getaddrinfo.cSzabolcs Nagy2013-11-251-3/+0
* Fix dn_comp prototype and add stubMichael Forney2013-11-241-0/+9
* Fix dn_expand pointer followingMichael Forney2013-11-231-1/+1
* fix fd leak (missing close-on-exec) in getifaddrsRich Felker2013-11-201-1/+1
* fix regression in inet_aton due to misinterpretation of __ipparse returnRich Felker2013-11-022-3/+3
* fix inet_ptonSzabolcs Nagy2013-10-231-26/+19
* fix __ipparse to parse the generic numbers-and-dots IPv4 format correctlySzabolcs Nagy2013-10-221-5/+12
* fix inet_aton to accept the generic "numbers-and-dots" IPv4 address formatSzabolcs Nagy2013-10-221-1/+4
* split inet_addr and inet_ntoa back into their own filesRich Felker2013-10-213-16/+21
* fix return value for inet_pton in ipv6 failure casesRich Felker2013-10-191-6/+6
* fix regression in dn_expand/reverse dnsRich Felker2013-08-231-1/+1
* fix length computation in dn_expandRich Felker2013-08-141-3/+5