Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-06 | fix race when exiting a detached thread. observed by and ok guenther | Ted Unangst | |
2013-04-06 | rthread sysctl isn't experimental anymore. oh, and it's gone too. | Ted Unangst | |
2013-04-05 | - Add comments regarding copies of these files also in libexec/ld.so | Kurt Miller | |
okay guenther@ | |||
2013-04-05 | do not fail on EINTR | Eric Faurot | |
suggested by deraadt@ | |||
2013-04-04 | fix alignment issue in getnetby{addr,name}() too. | Eric Faurot | |
2013-04-04 | use the provided ALIGN() macro instead of re-inventing a square wheel. | Eric Faurot | |
prodded by deraadt@ | |||
2013-04-03 | properly follow the CNAME chain in reverse lookups | Eric Faurot | |
spotted by sthen@ | |||
2013-04-03 | Use MSG_NOSIGNAL when writing DNS queries over TCP sockets to ensure | Matthew Dempsky | |
we don't trigger SIGPIPE. ok millert | |||
2013-04-03 | Update a comment about standards requirements | Philip Guenther | |
2013-04-03 | Drop an unnecessary #include | Philip Guenther | |
reminded by schwarze@ | |||
2013-04-03 | Handle big time_t. | Philip Guenther | |
Use clock_gettime(CLOCK_MONOTONIC) instead of gettimeofday() when measuring time intervals for debugging output. ok ratchov@ | |||
2013-04-03 | Set the stream orientation in open_{,w}memstream(). | Philip Guenther | |
Check it in the regress test ok mpi@ | |||
2013-04-02 | add comment for how EINPROGRESS is handled there. | Eric Faurot | |
2013-04-02 | make sure we always point before the current offset. | Eric Faurot | |
spotted by matthew@ | |||
2013-04-02 | better implementation for tcp_read() that can get the packet length in | Eric Faurot | |
multiple read. prodded by deraadt@ | |||
2013-04-01 | If more than one lookup line is found in resolv.conf, the latest one | Eric Faurot | |
takes precedence. Simplify code while there. suggested by deraadt@ | |||
2013-04-01 | properly check for domain name truncation at various places and fail | Eric Faurot | |
if that happens. prodded by deraadt@ | |||
2013-04-01 | When there are multiple groups of functions with their own #includes | Philip Guenther | |
listed, the #includes in each group are independent, so that users don't need to guess at possible carry-over. general idea ok otto@ millert@ actual diff ok jmc@ schwarze@ | |||
2013-04-01 | space cleanup; ok eric | Theo de Raadt | |
2013-04-01 | space cleanup; ok eric | Theo de Raadt | |
2013-04-01 | rename field | Eric Faurot | |
2013-04-01 | simpler and saner implementation for tcp_write(). now fully handles | Eric Faurot | |
short writes. prodded by deraadt@ | |||
2013-04-01 | fix alignment issue in the structure filled by gethostby{name,addr}() | Eric Faurot | |
spotted by naddy@ | |||
2013-03-31 | - Don't include guard pages in the stack size. | Kurt Miller | |
From Christian Schulte (cs at schulte.it) - Use stack->sp instead of recalculating it. From guenther@ okay guenther@ | |||
2013-03-31 | More SYNOPSIS, ERRORS, and STANDARDS updates | Philip Guenther | |
2013-03-31 | Principle of least astonishment: implement nameserver retry/backoff as | Eric Faurot | |
in the former resolver. | |||
2013-03-31 | Add a couple commas, as suggested by jmc@ | Philip Guenther | |
2013-03-31 | getaddrinfo is now thread-safe. | Brad Smith | |
ok eric@ | |||
2013-03-31 | Document more difference between parent and child. | Philip Guenther | |
Updates to ERRORS, and STANDARDS ok jmc@ | |||
2013-03-31 | Updates to RETURN VALUES, ERRORS, and STANDARDS | Philip Guenther | |
ok jmc@ | |||
2013-03-31 | Updates to SYNOPSIS, ERRORS, and STANDARDS | Philip Guenther | |
ok jmc@ | |||
2013-03-31 | Add ERRORS and STANDARDS sections; reorder and reword description to | Philip Guenther | |
clarify PROT_NONE vs PROT_* and what protections are actually sure to be supprted. ok jmc@, deraadt@ | |||
2013-03-31 | Use consistent wording for the EINVAL, EBADF, ENOTDIR, and EACCES cases | Philip Guenther | |
of the various *at() functions. | |||
2013-03-30 | allow "0" as service name for raw sockets. | Eric Faurot | |
ok sthen@ bluhm@ | |||
2013-03-30 | Do not assume local nameserver if resolv.conf doesn't exist, just use | Eric Faurot | |
/etc/hosts. discussed with deraadt@ | |||
2013-03-30 | tweak previous; | Jason McIntyre | |
2013-03-30 | don't ever skip reload the very first time; detective work by rpe@; ok eric@ | Otto Moerbeek | |
2013-03-30 | Various updates, mostly to SYNOPSIS, ERRORS, and STANDARDS, but | Philip Guenther | |
some other fixes included... *at() function ERRORS description suggested by matthew@ ok deraadt@ | |||
2013-03-29 | properly handle scope when parsing IPv6 addresses. | Eric Faurot | |
ok bluhm@ naddy@ sthen@ | |||
2013-03-29 | res_querydomain()'s code to terminate the domain with '.' had the assignment | Philip Guenther | |
flipped so that it always used a domain of ".." Heavy lifting by otto@ ok eric@ otto@ miod@ | |||
2013-03-29 | correctly show the scope for IPv6 addresses in getnameinfo() | Eric Faurot | |
2013-03-29 | Do not fail in gethostbyname_async() if there are multiple addresses in | Eric Faurot | |
a DNS packet... | |||
2013-03-28 | no Pp before/after Sh; | Jason McIntyre | |
2013-03-28 | pathconf/fpathconf are now compliant with POSIX-2008. | Philip Guenther | |
Adjust the errnos a bit. | |||
2013-03-28 | Switch libc and libm to use strong aliases rather than weak aliases | Martynas Venckus | |
where appropriate. Among other things makes the symbols consistent across all architectures (notably where ldbl mantissa is 53 bits). While at it, kill unused LINTLIBRARY/PROTOLIB1 cruft which was there to trick lint into recording the right prototypes for aliased functions. Most of the work done at the awesome n2k13 hackathon. Agreed by kettenis@, guenther@, matthew@. | |||
2013-03-28 | switch to the new resolver implementation. | Eric Faurot | |
requested by many. | |||
2013-03-28 | Enable fmemopen(3) and open_{w,}memstream(3) | Eric Faurot | |
commiting on behalf of mpi@ | |||
2013-03-28 | Avoid using PAGE_SHIFT, PAGE_SIZE, and PAGE_MASK defines, since we already | Theo de Raadt | |
know it from the machine. ok miod | |||
2013-03-28 | accept and use any protocol specified by the caller. | Eric Faurot | |
issue spotted by naddy@ | |||
2013-03-28 | Correct version number | Martin Pieuchot | |