Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-04 | Previous monotomic clock fix had major issues, this improves the matter. | Dale Rahn | |
ok otto@ | |||
2004-01-04 | split 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-04 | show message statistics in the "show neighbor" view | Henning Brauer | |
2004-01-04 | err, on receival of keepalives increase the keepalive counter, not the update | Henning Brauer | |
counter... | |||
2004-01-04 | oops... string.h ended up being included twice; pointed out by espie | Peter Valchev | |
2004-01-04 | keep seperate message counters for open/update/keepalive/notification | Henning Brauer | |
2004-01-04 | kill multi-line string; ok miod | Peter Valchev | |
2004-01-04 | new command "reload" | Henning Brauer | |
2004-01-04 | -new imsg CTL_RELOAD | Henning 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-04 | catch up | Henning Brauer | |
2004-01-04 | allow "show neighbor" to be limited to one specific neighbor | Henning Brauer | |
2004-01-04 | re-org some parts; grudging ok from jmc | Theo de Raadt | |
2004-01-04 | knf and lint | Theo de Raadt | |
2004-01-04 | spacing | Theo de Raadt | |
2004-01-04 | add infrastructure for command line parsing | Henning Brauer | |
to test that i had to add a "show neighbor" view... | |||
2004-01-04 | OpenBSD/powerpc is a __unix__ system. | Dale Rahn | |
2004-01-04 | c++rt0 is a relic. It shall go away. | Dale Rahn | |
2004-01-04 | c++rt0.o is a relic of long ago. tested on ELF drahn a.out miod, ok miod@ | Dale Rahn | |
2004-01-04 | in the SE, keep the remote router-id in network byte order, just like | Henning Brauer | |
every other IP address in the RDE, transform in into host byte order upon receival | |||
2004-01-04 | better macro name (IF_LOCKED -> BOUND_IFACE). from markus. | Cedric Berger | |
2004-01-04 | don't ignore "!" on "binat on !foo". ok mcbride@ | Cedric Berger | |
2004-01-04 | sync | Theo de Raadt | |
2004-01-04 | typo | Jolan Luff | |
2004-01-04 | +syslogc | Damien Miller | |
2004-01-04 | syslogc - client to read memory buffered logs from syslogd; | Damien Miller | |
manpage nits jmc@, fixes jose@; ok deraadt@ | |||
2004-01-04 | Buffered logging for syslogd. Logs may be stored in memory buffers and | Damien Miller | |
extracted using a small client. Useful for diskless systems. much feedback from deraadt@, canacar@, jmc@, jakob@ ; ok deraadt@ | |||
2004-01-04 | rename BUGS section to CAVEATS more appropriately; ok avsm & others | Peter Valchev | |
2004-01-04 | include proper protos for userland; deraadt | Peter Valchev | |
2004-01-04 | spaces | Theo de Raadt | |
2004-01-04 | zap multi-line literals; ok deraadt | Peter Valchev | |
2004-01-04 | Rewrite scsi_decode_sense() to clean up code; eliminate many magic | Kenneth 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-04 | print time since last up/down ninely | Henning Brauer | |
2004-01-04 | share statenames | Henning Brauer | |
2004-01-04 | Thou shall not flush TLBs incorrectly. | Miod Vallat | |
2004-01-04 | Working kluge to ``enable'' the on-board SCSI controller on 187 and 197, if | Miod Vallat | |
it is not the boot device and has not been expliictely ``enabled'' in the BUG. Will definitely help netboot installations... | |||
2004-01-04 | Wall and spacing, I am hunting bugs | Theo de Raadt | |
2004-01-04 | put INET6, rtsol, and ping6 onto media where it fits. install.sub changes | Theo de Raadt | |
which begin to enable use of this will follow at a later time. | |||
2004-01-04 | zap unused variable; ok mcbride | Peter Valchev | |
2004-01-03 | missing proto; ok hin | Peter Valchev | |
2004-01-03 | keep track of last session up/down and last successfull read | Henning Brauer | |
2004-01-03 | ``device'' is not written ``devic''. | Miod Vallat | |
2004-01-03 | print message counters | Henning Brauer | |
2004-01-03 | add message counters | Henning Brauer | |
2004-01-03 | Do not use (self) in pfload regress tests, it makes result config-dependant. | Cedric Berger | |
Found by David Krause, analyzed by Ryan McBride. | |||
2004-01-03 | shut gcc up; ok miod | Peter Valchev | |
2004-01-03 | #include session.h | Henning Brauer | |
2004-01-03 | move some session specific stuff to session.h and make the few files | Henning Brauer | |
that need it include that | |||
2004-01-03 | Silence 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-03 | decouple 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-03 | Fix format type mismatch (int vs. ssize_t). | Todd C. Miller | |