about summary refs log tree commit diff
path: root/src/network
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* de-duplicate dn_expand, fix return value and signature, clean upRich Felker2013-08-142-48/+23
* fix undefined strcpy call in inet_ntopRich Felker2013-07-251-1/+1
* make inet_ntop format v4-mapped ipv6 addresses properlyRich Felker2013-07-251-8/+14
* make getaddrinfo with AF_UNSPEC and null host return both IPv4 and v6Rich Felker2013-07-241-14/+23
* fix missing SOCK_CLOEXEC in various functions that use sockets internallyRich Felker2013-07-094-4/+4
* add stubs for additional legacy ether.h functionsRich Felker2013-07-011-0/+15
* implement inet_lnaof, inet_netof, and inet_makeaddrRich Felker2013-06-255-39/+55
* add ether_aton[_r] and ether_ntoa[_r] functionsRich Felker2013-06-251-0/+43
* getifaddrs: implement proper ipv6 netmasksrofl0r2013-04-091-2/+11
* getifaddrs: remove unused labelrofl0r2013-04-061-1/+0
* getifaddrs: use if_nameindex to enumerate interfacesrofl0r2013-04-051-23/+9
* getifaddrs: one less indent levelrofl0r2013-04-051-30/+28
* getifaddrs: less mallocrofl0r2013-04-051-55/+52
* add getifaddrsrofl0r2013-04-051-0/+191
* implement dn_skipname (legacy resolver function)Rich Felker2013-04-041-0/+12
* dynamically allocate storage for gethostby* buffersRich Felker2013-02-022-10/+32
* fix blank ai_canonname from getaddrinfo for non-CNAMEsRich Felker2013-02-021-1/+1
* fix memory leak due to double call to getaddrinfo in gethostbyname*Rich Felker2013-02-021-1/+0
* fix error returns in gethostby*_r functionsRich Felker2013-02-022-17/+10
* add inet_network (required for wine)rofl0r2012-12-191-0/+11
* improve SOCK_NONBLOCK/SOCK_CLOEXEC fallback codeRich Felker2012-11-051-1/+2
* fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker2012-09-291-3/+1
* move accept4, dup3, and pipe2 to non-linux-specific locationsRich Felker2012-09-291-0/+9
* emulate SOCK_CLOEXEC and SOCK_NONBLOCK for old (pre-2.6.27) kernelsRich Felker2012-09-291-1/+14
* fix getaddrinfo to accept port 0 (zero)Rich Felker2012-09-221-2/+2