about summary refs log tree commit diff
path: root/src/network
Commit message (Expand)AuthorAgeFilesLines
...
* avoid attempting to lookup IP literals as hostnamesRich Felker2015-09-251-27/+32
* make getaddrinfo return error if both host and service name are nullRich Felker2015-09-251-0/+2
* fix uninitialized scopeid in lookups from hosts file and ip literalsTimo Teräs2015-09-111-2/+2
* fix negated return value of ns_skiprr, breakage in related functionsRich Felker2015-07-081-1/+1
* fix internal buffer overrun in inet_ptonRich Felker2015-03-231-2/+3
* make protocol table zero byte separated and add ipv6 protocolsTimo Teräs2015-02-101-22/+26
* make getaddrinfo support SOCK_RAW and other socket typesRich Felker2015-02-074-34/+42
* add basic dns record parsing functionsRich Felker2014-12-171-0/+171
* fix potential read past end of buffer in getnameinfo service name lookupRich Felker2014-09-051-1/+1
* remove incorrect and useless check in network service name lookup codeRich Felker2014-09-051-1/+0
* remove an extra layer of buffer copying in getnameinfo reverse dnsRich Felker2014-09-051-3/+2
* fix dn_expand empty name handling and offsets to 0Szabolcs Nagy2014-09-041-6/+9
* reimplement if_nameindex and getifaddrs using netlinkTimo Teräs2014-07-294-184/+411
* add support for LC_TIME and LC_MESSAGES translationsRich Felker2014-07-262-2/+6
* 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