summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-01-04Previous monotomic clock fix had major issues, this improves the matter.Dale Rahn
ok otto@
2004-01-04split the dispatch_imsg function into twom one per pipe.Henning Brauer
with the amount of different msgs the RDE is handling the checks wether a msg was received on the "wrong" pipe make things less clear. also remove some outdated comments
2004-01-04show message statistics in the "show neighbor" viewHenning Brauer
2004-01-04err, on receival of keepalives increase the keepalive counter, not the updateHenning Brauer
counter...
2004-01-04oops... string.h ended up being included twice; pointed out by espiePeter Valchev
2004-01-04keep seperate message counters for open/update/keepalive/notificationHenning Brauer
2004-01-04kill multi-line string; ok miodPeter Valchev
2004-01-04new command "reload"Henning Brauer
2004-01-04-new imsg CTL_RELOADHenning Brauer
-upong receival in the SE forward to parent -make sending messages from SE to parent work for that (was not required before) -parent reacts to that just like a SIGHUP, reread config file
2004-01-04catch upHenning Brauer
2004-01-04allow "show neighbor" to be limited to one specific neighborHenning Brauer
2004-01-04re-org some parts; grudging ok from jmcTheo de Raadt
2004-01-04knf and lintTheo de Raadt
2004-01-04spacingTheo de Raadt
2004-01-04add infrastructure for command line parsingHenning Brauer
to test that i had to add a "show neighbor" view...
2004-01-04OpenBSD/powerpc is a __unix__ system.Dale Rahn
2004-01-04c++rt0 is a relic. It shall go away.Dale Rahn
2004-01-04c++rt0.o is a relic of long ago. tested on ELF drahn a.out miod, ok miod@Dale Rahn
2004-01-04in the SE, keep the remote router-id in network byte order, just likeHenning Brauer
every other IP address in the RDE, transform in into host byte order upon receival
2004-01-04better macro name (IF_LOCKED -> BOUND_IFACE). from markus.Cedric Berger
2004-01-04don't ignore "!" on "binat on !foo". ok mcbride@Cedric Berger
2004-01-04syncTheo de Raadt
2004-01-04typoJolan Luff
2004-01-04+syslogcDamien Miller
2004-01-04syslogc - client to read memory buffered logs from syslogd;Damien Miller
manpage nits jmc@, fixes jose@; ok deraadt@
2004-01-04Buffered logging for syslogd. Logs may be stored in memory buffers andDamien Miller
extracted using a small client. Useful for diskless systems. much feedback from deraadt@, canacar@, jmc@, jakob@ ; ok deraadt@
2004-01-04rename BUGS section to CAVEATS more appropriately; ok avsm & othersPeter Valchev
2004-01-04include proper protos for userland; deraadtPeter Valchev
2004-01-04spacesTheo de Raadt
2004-01-04zap multi-line literals; ok deraadtPeter Valchev
2004-01-04Rewrite scsi_decode_sense() to clean up code; eliminate many magicKenneth R Westerback
numbers; fix passing a NULL to %s under some circumstances; fix the bit index mask; etc. No change in output. ok deraadt@.
2004-01-04print time since last up/down ninelyHenning Brauer
2004-01-04share statenamesHenning Brauer
2004-01-04Thou shall not flush TLBs incorrectly.Miod Vallat
2004-01-04Working kluge to ``enable'' the on-board SCSI controller on 187 and 197, ifMiod Vallat
it is not the boot device and has not been expliictely ``enabled'' in the BUG. Will definitely help netboot installations...
2004-01-04Wall and spacing, I am hunting bugsTheo de Raadt
2004-01-04put INET6, rtsol, and ping6 onto media where it fits. install.sub changesTheo de Raadt
which begin to enable use of this will follow at a later time.
2004-01-04zap unused variable; ok mcbridePeter Valchev
2004-01-03missing proto; ok hinPeter Valchev
2004-01-03keep track of last session up/down and last successfull readHenning Brauer
2004-01-03``device'' is not written ``devic''.Miod Vallat
2004-01-03print message countersHenning Brauer
2004-01-03add message countersHenning Brauer
2004-01-03Do not use (self) in pfload regress tests, it makes result config-dependant.Cedric Berger
Found by David Krause, analyzed by Ryan McBride.
2004-01-03shut gcc up; ok miodPeter Valchev
2004-01-03#include session.hHenning Brauer
2004-01-03move some session specific stuff to session.h and make the few filesHenning Brauer
that need it include that
2004-01-03Silence a gcc warning: "initialization from incompatible pointer type"Todd C. Miller
The problem is that while ANSI C allows initialization of unions, the initializer must be valid for the first member of the union. Therefore, add a cast to quiet the compiler. Noticed and Ok pvalchev@
2004-01-03decouple the peer list from bgpd_config.Henning Brauer
so many parts of bgpd are not at all interested in the session specific peer structs... allows for some further cleaning
2004-01-03Fix format type mismatch (int vs. ssize_t).Todd C. Miller