Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-22 | log pcap stats upon SIGUSR1; ok canacar | Henning Brauer | |
From: Dave Harrison <dave@nullcube.com> | |||
2008-03-24 | msg_controllen has to be CMSG_SPACE so that the kernel can account for | Theo de Raadt | |
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 | |||
2008-03-15 | Repair the simple cases for msg_controllen where it should just be | Theo de Raadt | |
CMSG_SIZE(sizeof(int)), not sizeof(buffer) which may be larger because of alignment; ok kettenis hshoexer | |||
2008-03-13 | Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to | Theo de Raadt | |
an extensive discussion with otto, kettenis, millert, and hshoexer | |||
2008-01-14 | clear up pidfile(-p) option form | Okan Demirmen | |
tweaked by jmc, ok henning | |||
2007-06-06 | fix oups, mlist@scapa.dnsalias.net | Henning Brauer | |
2007-06-06 | reverse logic of if_exists so that if_exists(interface) is true if | Henning Brauer | |
interface exists and !if_exists(interface) is when it doesn't | |||
2007-06-04 | use warn() where warn() is intended, not err() | Henning Brauer | |
exit nonzero if the inetrface does not exist From: tbert <bret.lambert@gmail.com> | |||
2007-06-02 | do not shadow globals (in if_exists) | Henning Brauer | |
2007-06-02 | on pcap error, check wether the interface went away and exit if it did. | Henning Brauer | |
spinning and flooding syslog in that case was not so nice. | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-27 | Complain to stderr if cloned pflog interface doesn't exist. Previously only ↵ | Jason Dixon | |
logged LOG_ERR to syslog. ok henning@ | |||
2007-04-07 | - use .Bk/.Ek to avoid SYNOPSIS splitting | Jason McIntyre | |
- put -p in the correct place - sync the -p argument name and tweak its description - add -p to usage() | |||
2007-04-06 | Adds a pidfile argument to pflogd so that individual | Can Erkin Acar | |
instances can be rotated via newsyslog. From Berk Demir < bdd at mindcast org > ok henning@ | |||
2006-12-08 | state that if the log file is bad, it is first moved out of the way. if | Joel Knight | |
that fails, then logging is suspended. | |||
2006-12-06 | style | Michael Knudsen | |
2006-11-26 | repair missing DPADD requests | Theo de Raadt | |
2006-11-19 | Default snaplen has been 116 for a while now. | Joel Knight | |
2006-10-26 | - sort options | Jason McIntyre | |
- sync usage() | |||
2006-10-25 | Remove some unneeded externs. OK canacar@ | Moritz Jodeit | |
2006-10-25 | allow pflogd to listen on alternate pflog interfaces | Henning Brauer | |
"Berk D. Demir" <bdd@mindcast.org> sent a diff in private, and then it evolved quite a bit... ok djm canacar berk | |||
2006-03-06 | convert permanent privilege revocation to use setresuid/setresgid; | Damien Miller | |
ok henning@ | |||
2006-01-15 | If the log file is invalid/incompatible, try to rename the bad log file | Can Erkin Acar | |
and continue with a new name instead of suspending. ok mcbride@ | |||
2005-07-04 | do not whack errno before using it; Andrey Matveev | Theo de Raadt | |
2005-05-27 | filtering on ruleset name is already implemented, document it. | Daniel Hartmeier | |
2005-04-14 | sync the list of acceptable values for 'reason' with reality | Joel Knight | |
2005-02-09 | missing tzset(), noticed by Chris Kuethe <chris.kuethe@gmail.com> | Henning Brauer | |
2005-01-08 | Use the handler specified in phandler instead of always using | Can Erkin Acar | |
dump_packet. Report and patch from Peter Postma, thanks. | |||
2005-01-02 | "bad-timestamp" is a valid logging reason; | Jason McIntyre | |
from joel knight; | |||
2004-12-22 | also pass SIGINT/QUIT to child, from mpech@. ok avsm@ | Otto Moerbeek | |
2004-09-17 | ugly spacing | Theo de Raadt | |
2004-08-13 | extra check for no message case; ok markus, deraadt, hshoexer, henning | Damien Miller | |
2004-08-08 | spacing | Theo de Raadt | |
2004-07-14 | no \n in errx(3) | Henning Brauer | |
From: Andrey Matveev <andrushock@korovino.net> | |||
2004-05-23 | use strtonum instead of atoi; dhartmei ok | Theo de Raadt | |
2004-04-28 | fd leaks; henning ok | Theo de Raadt | |
2004-04-08 | sigh, really fix the error message this time, thanks Moritz Jodeit | Anil Madhavapeddy | |
2004-04-08 | reorder error message and send_fd in order to display the correct | Anil Madhavapeddy | |
errno in error message; pointed out by Moritz Jodeit <moritz at jodeit.org> | |||
2004-04-03 | dont close an invalid fd, canacar@ ok | Anil Madhavapeddy | |
2004-03-14 | Check return code of chdir() after chroot(); noted by Joris Vink, slight mod | Otto Moerbeek | |
from avsm@. ok avsm@ hshoexer@ henning@ | |||
2004-02-13 | cleanup signal handling; close descriptors. | Otto Moerbeek | |
ok avsm@ millert@ canacar@ | |||
2004-01-18 | Create log files if they do not already exist, but do not follow | Can Erkin Acar | |
symlinks. ok markus@ | |||
2004-01-16 | - standard option order | Jason McIntyre | |
- sync usage() - new sentence, new line - Dv (not Va) for signals - other nits ok canacar@ | |||
2004-01-15 | Try to preserve the integrity of the log file in case of errors/unexpected | Can Erkin Acar | |
shutdowns etc. Also check logfile integrity on startup and suspend logging if an inconsistency is detected. ok dhartmei@ | |||
2004-01-15 | Synchronize with syslogd privsep: When reading a new command fails, | Can Erkin Acar | |
terminate the loop instead of exiting directly, suggested by avsm@ Also get rid of trailing comma in enum, makes lint(1) happier, from Andrey Matveev andrushock at korovino dot net | |||
2003-11-20 | remove -Werror from userland builds, to give us a chance to | Anil Madhavapeddy | |
use more verbose warning options if desired. ok millert@, henning@, david@ | |||
2003-10-22 | spacing | Theo de Raadt | |
2003-10-22 | use setgroups too; canacar ok | Theo de Raadt | |
2003-10-22 | caution with kill | Theo de Raadt | |
2003-10-22 | privilege seperated pflogd | Can Erkin Acar | |
_pflogd user and group must be created for proper operation. ok frantzen@ henning@ mcbride@ deraadt@ |