summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bind/lib/isc/unix/privsep_fdpass.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove various unused bits and pieces from lib/isc.florian2020-01-091-123/+0
| | | | | | | Minus 3k lines. Input deraadt OK millert
* msg_controllen has to be CMSG_SPACE so that the kernel can account forderaadt2008-03-241-3/+3
| | | | | | | each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This works now that kernel fd passing has been fixed to accept a bit of sloppiness because of this ABI repair. lots of discussion with kettenis
* Repair the simple cases for msg_controllen where it should just bederaadt2008-03-151-3/+3
| | | | | CMSG_SIZE(sizeof(int)), not sizeof(buffer) which may be larger because of alignment; ok kettenis hshoexer
* Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due toderaadt2008-03-131-7/+13
| | | | an extensive discussion with otto, kettenis, millert, and hshoexer
* resolve conflictsjakob2004-09-281-5/+1
|
* extra check for no message case; ok markus, deraadt, hshoexer, henningdjm2004-08-131-1/+5
|
* include string.h for memset, canacar@ okavsm2004-04-191-1/+2
|
* Privilege seperation for named. Allows named to handle address/interfacecanacar2004-03-121-0/+116
changes without restart. If you use non-standard ports in named configuration make sure they are > 1024. Also /var/named/etc/rndc.key (if any) must be readable by group named. Initial work and testing by itojun@, jakob@, hints, help from henning@, avsm@, beck@. ok henning, beck, avsm, deraadt