Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove CTL_USER hierarchy from sysctl() | 2013-04-15 | 2 | -248/+4 | ||
| | | | | | | (Use sysconf() or confstr() instead) ok miod@ millert@ | |||||
* | Implement fdatasync() as a wrapper around fsync() | 2013-04-15 | 4 | -12/+55 | ||
| | | | | ok guenther, deraadt, jmc | |||||
* | SHA-224 is to SHA-256 as SHA-384 is to SHA-512. It was added in a | 2013-04-15 | 3 | -15/+91 | ||
| | | | | later revision of FIPS-180. OK miod@ jmc@ guenther@ djm@ | |||||
* | Crank due to statfs changes and other inbound commits. | 2013-04-15 | 1 | -1/+1 | ||
| | ||||||
* | Back out r1.17 and its subsequent conversion to poll. Otherwise | 2013-04-15 | 1 | -27/+6 | ||
| | | | | | | | we can get into a svc_getreq_poll() -> readtcp() -> svc_getreq_poll() loop until we run out of stack. If we want to avoid blocking on the new fd in readtcp() we need to poll() in svc_getreq_poll(), which will require a more elaborate change. OK tedu@ | |||||
* | spacing | 2013-04-14 | 4 | -8/+8 | ||
| | ||||||
* | Proper access of _THREAD_PRIVATE storage. Avoids a mem leak and reinit | 2013-04-11 | 1 | -3/+3 | ||
| | | | | | of resolver context for each resolver call for single threaded programs. With and ok tedu@ ok eric@ | |||||
* | Fix obviously stupid bug in the PIC_{LOAD,STORE} macros when compiling with | 2013-04-11 | 1 | -3/+3 | ||
| | | | | -fPIC. Harmless since we build libc -fpic so far. | |||||
* | show what we parsed in debug output; ok guether@ | 2013-04-09 | 1 | -2/+2 | ||
| | ||||||
* | Do not fail if the user buffer is too short to hold the packet: fill it up | 2013-04-08 | 2 | -5/+26 | ||
| | | | | | | to the given size and return the packet length. issue spotted by weerd@ | |||||
* | Updates to SYNOPSIS, ERRORS, and STANDARDS. | 2013-04-08 | 5 | -43/+65 | ||
| | ||||||
* | Use .Er for errno E* constants | 2013-04-08 | 3 | -18/+18 | ||
| | ||||||
* | Comply with rfc2553. lib/libc/net/getaddrinfo.c already has this right. | 2013-04-08 | 1 | -2/+2 | ||
| | | | | | | This fixes hostname resolution for OpenVPN 2.3.1. ok eric@. | |||||
* | macro fix for previous; | 2013-04-08 | 1 | -2/+3 | ||
| | ||||||
* | Updates to SYNOPSIS, ERRORS, and STANDARDS. | 2013-04-08 | 5 | -40/+84 | ||
| | ||||||
* | zap trailing whitespace; | 2013-04-08 | 1 | -2/+2 | ||
| | ||||||
* | Updates to SYNOPSIS, ERRORS, and STANDARDS. | 2013-04-08 | 1 | -12/+38 | ||
| | | | | getrlimit(2) RLIMIT_STACK wording suggested by jmc@ | |||||
* | a little fix for the version history | 2013-04-06 | 2 | -7/+7 | ||
| | ||||||
* | remove more references to kern.rthreads sysctl. | 2013-04-06 | 2 | -8/+4 | ||
| | | | | many thanks to jmc for noticing | |||||
* | rthread sysctl isn't experimental anymore. oh, and it's gone too. | 2013-04-06 | 1 | -6/+2 | ||
| | ||||||
* | - Add comments regarding copies of these files also in libexec/ld.so | 2013-04-05 | 3 | -3/+9 | ||
| | | | | okay guenther@ | |||||
* | do not fail on EINTR | 2013-04-05 | 1 | -4/+16 | ||
| | | | | suggested by deraadt@ | |||||
* | fix alignment issue in getnetby{addr,name}() too. | 2013-04-04 | 1 | -6/+10 | ||
| | ||||||
* | use the provided ALIGN() macro instead of re-inventing a square wheel. | 2013-04-04 | 1 | -7/+3 | ||
| | | | | prodded by deraadt@ | |||||
* | properly follow the CNAME chain in reverse lookups | 2013-04-03 | 1 | -5/+13 | ||
| | | | | spotted by sthen@ | |||||
* | Use MSG_NOSIGNAL when writing DNS queries over TCP sockets to ensure | 2013-04-03 | 1 | -2/+7 | ||
| | | | | | | we don't trigger SIGPIPE. ok millert | |||||
* | Update a comment about standards requirements | 2013-04-03 | 1 | -4/+4 | ||
| | ||||||
* | Drop an unnecessary #include | 2013-04-03 | 1 | -3/+2 | ||
| | | | | reminded by schwarze@ | |||||
* | Set the stream orientation in open_{,w}memstream(). | 2013-04-03 | 2 | -2/+4 | ||
| | | | | | | Check it in the regress test ok mpi@ | |||||
* | add comment for how EINPROGRESS is handled there. | 2013-04-02 | 1 | -1/+6 | ||
| | ||||||
* | make sure we always point before the current offset. | 2013-04-02 | 1 | -2/+2 | ||
| | | | | spotted by matthew@ | |||||
* | better implementation for tcp_read() that can get the packet length in | 2013-04-02 | 2 | -23/+35 | ||
| | | | | | | multiple read. prodded by deraadt@ | |||||
* | If more than one lookup line is found in resolv.conf, the latest one | 2013-04-01 | 1 | -18/+9 | ||
| | | | | | | takes precedence. Simplify code while there. suggested by deraadt@ | |||||
* | properly check for domain name truncation at various places and fail | 2013-04-01 | 3 | -20/+30 | ||
| | | | | | | if that happens. prodded by deraadt@ | |||||
* | When there are multiple groups of functions with their own #includes | 2013-04-01 | 14 | -46/+55 | ||
| | | | | | | | | 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@ | |||||
* | space cleanup; ok eric | 2013-04-01 | 2 | -4/+4 | ||
| | ||||||
* | space cleanup; ok eric | 2013-04-01 | 13 | -72/+72 | ||
| | ||||||
* | rename field | 2013-04-01 | 2 | -6/+6 | ||
| | ||||||
* | simpler and saner implementation for tcp_write(). now fully handles | 2013-04-01 | 2 | -40/+16 | ||
| | | | | | | short writes. prodded by deraadt@ | |||||
* | fix alignment issue in the structure filled by gethostby{name,addr}() | 2013-04-01 | 1 | -10/+23 | ||
| | | | | spotted by naddy@ | |||||
* | More SYNOPSIS, ERRORS, and STANDARDS updates | 2013-03-31 | 7 | -26/+62 | ||
| | ||||||
* | Principle of least astonishment: implement nameserver retry/backoff as | 2013-03-31 | 2 | -8/+10 | ||
| | | | | in the former resolver. | |||||
* | Add a couple commas, as suggested by jmc@ | 2013-03-31 | 1 | -3/+3 | ||
| | ||||||
* | getaddrinfo is now thread-safe. | 2013-03-31 | 1 | -6/+2 | ||
| | | | | ok eric@ | |||||
* | Document more difference between parent and child. | 2013-03-31 | 1 | -9/+27 | ||
| | | | | | | Updates to ERRORS, and STANDARDS ok jmc@ | |||||
* | Updates to RETURN VALUES, ERRORS, and STANDARDS | 2013-03-31 | 1 | -3/+14 | ||
| | | | | ok jmc@ | |||||
* | Updates to SYNOPSIS, ERRORS, and STANDARDS | 2013-03-31 | 7 | -38/+86 | ||
| | | | | ok jmc@ | |||||
* | Add ERRORS and STANDARDS sections; reorder and reword description to | 2013-03-31 | 1 | -14/+39 | ||
| | | | | | | | clarify PROT_NONE vs PROT_* and what protections are actually sure to be supprted. ok jmc@, deraadt@ | |||||
* | Use consistent wording for the EINVAL, EBADF, ENOTDIR, and EACCES cases | 2013-03-31 | 13 | -59/+250 | ||
| | | | | of the various *at() functions. | |||||
* | allow "0" as service name for raw sockets. | 2013-03-30 | 1 | -2/+2 | ||
| | | | | ok sthen@ bluhm@ |