about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* add routing protocols to getprotoent-family functionsTimo Teräs2014-06-241-0/+2
* rename dynamic linker _start to _dlstart in the stub versionRich Felker2014-06-231-1/+1
* add __sysv_signal abi-compat alias for the signal functionRich Felker2014-06-221-0/+1
* add __xmknod and __xmknodat abi-compat functionsRich Felker2014-06-221-0/+10
* consolidate __xstat abi-compat functions into a single source fileRich Felker2014-06-224-27/+18
* implement fmtmsg functionRich Felker2014-06-211-0/+90
* 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
* rename dynamic linker entry point from _start to _dlstartRich Felker2014-06-208-19/+19
* implement sendmmsg and recvmmsgRich Felker2014-06-192-0/+44
* add tlsdesc support for x86_64Rich Felker2014-06-191-0/+40
* separate __tls_get_addr implementation from dynamic linker/init_tlsRich Felker2014-06-193-11/+23
* add tlsdesc support for i386Rich Felker2014-06-191-0/+27
* optimize i386 ___tls_get_addr asmRich Felker2014-06-191-1/+8
* change dynamic TLS installation strategy to optimize accessRich Felker2014-06-191-8/+14
* add arch-generic support for tlsdesc relocations to dynamic linkerRich Felker2014-06-192-0/+54
* fix incorrect comparison loop condition in memmemRich Felker2014-06-191-2/+2
* reduce code duplication in dynamic linker error pathsRich Felker2014-06-181-16/+16
* refactor to remove arch-specific relocation code from dynamic linkerRich Felker2014-06-181-8/+89
* fix missing argument to syscall in fanotify_markClément Vasseur2014-06-141-1/+1
* support optional-argument extension to getopt via double-colonRich Felker2014-06-111-2/+5
* simplify errno implementationRich Felker2014-06-104-4/+2
* replace all remaining internal uses of pthread_self with __pthread_selfRich Felker2014-06-1011-12/+12
* add thread-pointer support for pre-2.6 kernels on i386Rich Felker2014-06-102-13/+22
* avoid spurious lookup failures from badly-behaved nameserversRich Felker2014-06-071-5/+22
* use default timezone from /etc/localtime if $TZ is unset/blankRich Felker2014-06-061-2/+3
* implement %y and %C specifiers in strptimeTimo Teräs2014-06-061-4/+10
* avoid invalid use of va_arg in openRich Felker2014-06-061-5/+8
* add O_CLOEXEC fallback for open and related functionsRich Felker2014-06-063-1/+9
* 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 fd leak in tmpfile when the fdopen operation failsRich Felker2014-06-061-1/+2
* 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
* simplify vasprintf implementationRich Felker2014-06-041-14/+1
* 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
* fix incorrect end pointer in some cases when wcsrtombs stops earlyRich Felker2014-06-021-7/+15
* 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