summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-01-06Drop UDP packets with destination port 0, or zero or oversized payloadDaniel Hartmeier
length (same as udp_input() does, if pf is not enabled). Found by Pyun YongHyeon. ok cedric@, ho@, henning@ and markus@.
2004-01-06pkill/pgrep from NetBSD with changes to use kvm_getprocs(). SelectingTodd C. Miller
on session ID does not current work but that will change once the kernel supports the KERN_PROC2 sysctl and pkill/pgrep is modified to use kvm_getproc2(). OK deraadt@
2004-01-06Fix signal handling when there is an error in inetd.conf. Found byTodd C. Miller
mpech@. OK mpech@ and deraadt@
2004-01-06print intervals with the timersHenning Brauer
2004-01-06lower the initial value for the IdleHold timer from 90 to 30 seconds.Henning Brauer
90 is too much, and now that the punishment works as intended oscillating peers get slowed down by that
2004-01-06properly punish oscillating neighbors.Henning Brauer
previously we were to forgiving so the punishment didn't kick in as intended
2004-01-06re-syncTom Cosgrove
2004-01-06StartTimer -> IdleHoldTimerHenning Brauer
2004-01-06rename our StartTimer to IdleHoldTimer as per draft-ietf-idr-bgp4-23Henning Brauer
2004-01-06import netbsd's version of David Borman's syncache codeMarkus Friedl
http://www.kohala.com/start/borman.97jun06.txt; ok deraadt@, henning@
2004-01-06fix vlan destroy for MROUTING; report spamme@wouz.dk via tedu; ok itojunMarkus Friedl
2004-01-06syncTom Cosgrove
2004-01-06Fix typo in device id for SiS596, and correct name. Also updateTom Cosgrove
URLs for PCI device information. ok krw@, deraadt@
2004-01-06simplify a list;Jason McIntyre
ok henning@
2004-01-06Add tests for interface->address translation in userland and in the kernel.Cedric Berger
2004-01-062004 OK henning@Claudio Jeker
2004-01-06Fix reopening of dump files.Claudio Jeker
OK henning@
2004-01-06group-locked -> group-bound, from J. KnightCedric Berger
2004-01-06man tweaks;Jason McIntyre
2004-01-06cleanupTheo de Raadt
2004-01-06protect output from %union from being anonymous using cpp guarding, forTheo de Raadt
the case where the yacc output .c file pulls in the yacc output -h file; espie ok
2004-01-06keep track of a vnode's parent dir. ufs only, and unused atm, butTed Unangst
the fun stuff is coming. testing by brad.
2004-01-06lock filedesc before manipulating. avoids some rare races.Ted Unangst
testing for quite some time by brad + otto
2004-01-062004Henning Brauer
2004-01-06small typos fixed.Hans-Joerg Hoexer
ok markus@
2004-01-06Remove redundant test for file types. Noted by Stefan Paletta.Hans-Joerg Hoexer
While around, fix typos in log messages. Both ok markus@
2004-01-05stop ifc_destroy() if there are still knotes registered.Marco Pfatschbacher
ok mcbride@ markus@
2004-01-05Big overhaul of the mrt code.Claudio Jeker
Dumping of incomming bgp messages is now possible and dumping the (not yet) filtered updates works too. Per neighbor dumps are still missing. OK henning@
2004-01-05fix commentsClaudio Jeker
OK henning@
2004-01-05Mention 8 tty on M8120 here too.Miod Vallat
2004-01-05few off by ones in strlcpy overflow check; Patrick LatifiHenning Brauer
2004-01-05make these refer to sysctl(8), not (3), for consistency;Jason McIntyre
2004-01-05man tweaks; ok markus@Jason McIntyre
2004-01-05wording improvemements;Jason McIntyre
started by Jared Yanovich and tempered by otto, tom, millert and myself; ok millert@
2004-01-05add -F to usage()Jun-ichiro itojun Hagino
2004-01-05add -F option, which sets sysctl(8) variables rather than warn(3) about theJun-ichiro itojun Hagino
current setting. basically for boot floppy. req'ed by fries@. deraadt@ ok.
2004-01-05do correctly.. sighTheo de Raadt
2004-01-05add nsclpcsio and format..Theo de Raadt
2004-01-05National LPC SIO monitorMarkus Friedl
2004-01-05Regen (M8120 tty04-tty07 support).Miod Vallat
2004-01-05Handle tty04-tty07 for M8120Miod Vallat
2004-01-05Support for the second set of serial ports on the M8120 (untested)Miod Vallat
2004-01-05Stop masquerading the M8120 (no-slot MVME187) as a real MVME187, and keepMiod Vallat
its value in brdtyp. Compensate by checking for BRD_8120 everywhere BRD_187 was checked.
2004-01-05regress test for kqueue+EOF; marius aamodt eriksenMarkus Friedl
2004-01-05support NOTE_EOF; from marius aamodt eriksen; ok tedu, millertMarkus Friedl
2004-01-05missing fclose()Henning Brauer
fd leak pointed out by Patrick Latifi, but it was not so easy to fix before I just killed the support for config from stdin and his fix didn't work. however, this is the 16 bytes memory leak on config reload i was hunting for some time, big thanks to Patrick!
2004-01-05correctly handle SIGCHLD.Henning Brauer
SIGCHLD does _not_ translate to "a child process went kaboom". waitpid() and check status; if the child exited or terminated log & quit ok claudio@
2004-01-05remove support for reading configuration from stdin.Henning Brauer
that really does not make sense with a daemon and probably breaks horribly on config reload
2004-01-05fix off by ones with strlcpy()Henning Brauer
memleak fixes in error paths From: Patrick Latifi <pat@eyeo.org>
2004-01-050 -> (void *)NULL for last argument of icmp_error(), which is of typeDaniel Hartmeier
struct ifnet *, from Pyun YongHyeon