Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-16 | KNF. No binary change. | Claudio Jeker | |
2006-03-16 | Make ifstated handle config reloads after a parse error. Fixes PR5051 | Ryan Thomas McBride | |
Fix from Michael Knudsen. | |||
2006-03-16 | Error out of ifstate.conf parsing instead of dumping core in operation | Ryan Thomas McBride | |
when a undefined ruleset is referenced. Fixes PR5049. Report and troubleshooting from Michael Knudsen. | |||
2006-03-16 | Kill useless arguments to libevent *_set() functions. | Ryan Thomas McBride | |
ok mpf@ | |||
2006-03-15 | consistently use power *states* and performance *modes* | Nikolay Sturm | |
ok beck, mickey | |||
2006-03-15 | In nexthop_compare() if the two passed pointers point to the same object | Claudio Jeker | |
the odds are better than good that there is no difference. | |||
2006-03-15 | There is no need to check iface != NULL. These parser rules are only allowed | Claudio Jeker | |
if iface is set and so the check is superfluous. OK norby@ | |||
2006-03-15 | Looks like auth-type simple was busted since a long time. We bcmp() a | Claudio Jeker | |
c string with a lenght <= 8 with a buffer of size 8. Now in some cases there can be trailing garbage after the c-string and so the bcmp() fails. Found by Sergey Matveychuk who provided a similar patch. OK norby@ | |||
2006-03-15 | Sync usage with man page (sort arguments). | Claudio Jeker | |
2006-03-15 | Document new -s path option to select an alternate path for the main control | Claudio Jeker | |
socket. | |||
2006-03-15 | Allow the control socket to be changed on the command line. Useful if you | Claudio Jeker | |
need to run multiple bgpds on a single box to simulate a IX. This helped me massivly debugging error reports. OK henning@ | |||
2006-03-15 | Fix a memory leak when communities are set or deleted. This seems to fix | Claudio Jeker | |
Sylvain Coutant memory issues. A lot of patience and testing by Sylvain. | |||
2006-03-15 | Add missing function declarations | David Hill | |
Sprinkle some const OK beck@ | |||
2006-03-14 | #ifdef DEBUG not #if DEBUG | Theo de Raadt | |
2006-03-14 | install these on amd64 | Nikolay Sturm | |
even though amd64 does not have apm support, this change permits hw.setperf manipulations via apm/apmd | |||
2006-03-14 | fix sentence to make sense. | Bob Beck | |
ok millert@ jmc@ ketennis@ and others from before 3.9 lock | |||
2006-03-14 | fix incorrect sizeof(), spotted by ckuethe | Bob Beck | |
ok deraadt@ | |||
2006-03-14 | Some more usage of const and correct fmt string for a size_t. | Moritz Jodeit | |
From David Hill. ok ray@ jaredy@ otto@ | |||
2006-03-14 | Kill unneeded util.h include. | Claudio Jeker | |
2006-03-13 | tiny bit of delinting; ok krw@ | Otto Moerbeek | |
2006-03-13 | delint; from David Hill | Otto Moerbeek | |
2006-03-13 | Simplify error() and warning() a bit. From Alexey Dobriyan. | Moritz Jodeit | |
ok jaredy@ otto@ | |||
2006-03-13 | Fix for PR 5052. Be more careful about the announced networks we accept. | Claudio Jeker | |
Make sure that at least the address family and the prefix length are sane. Reported and fix tested by Pete Vickers. | |||
2006-03-13 | cleanup from dhill | Theo de Raadt | |
2006-03-13 | clean-up some name handling: | Marc Espie | |
- package locations always contain a pkgname (except if we don't have it) - complete it on the repository side to grab the right file. - no need to pass pkgname/arch on $location->grabPlist(), since it's already in the location. | |||
2006-03-13 | repair pkg_add - | Marc Espie | |
2006-03-13 | The return value of the start/stop timer functions is almost never checked. | Claudio Jeker | |
Switch them to void functions and check if evtimer_add/del fails -- in which case we fatal() as there is no useful way to recover in such an event. OK norby@ | |||
2006-03-12 | missing close(); dhill@mindcry.org | Theo de Raadt | |
2006-03-12 | more getopt() EOF crud; adobriyan@gmail | Theo de Raadt | |
2006-03-10 | print IAPP messages for the old IAPP port 2313. | Reyk Floeter | |
2006-03-10 | add whitespace | Reyk Floeter | |
2006-03-10 | some IAPP implementations still use the pre-standard port 2313 in broadcast | Reyk Floeter | |
mode (tested with the HP ProCurve 420wl). add a note to the manual page and the example configuration. | |||
2006-03-10 | Avoid printing the whole file in the error message on missing trailing " | Otto Moerbeek | |
Found by by mpech@; ok mpech@ ray@ miod@ | |||
2006-03-09 | Track interface uptime. | Esben Norby | |
ok claudio@ | |||
2006-03-09 | Add some NOTREACHED to please lint. | Claudio Jeker | |
2006-03-09 | More spring cleaning with lint. Change a few types and add some comments to | Claudio Jeker | |
help lint. | |||
2006-03-09 | It seems that 60 secs is a reasonable amount of time to reach state FULL. | Esben Norby | |
2006-03-09 | Start using *_name function that are now shared between ospfd and ospfctl. | Claudio Jeker | |
OK norby@ | |||
2006-03-09 | Move *_name functions to log.c and use these for both ospfd and ospfctl. | Claudio Jeker | |
Stuff that is only used in ospfd debug messages is simplified. OK norby@ | |||
2006-03-09 | Correctly warn about unsupported interface types as it is done in other places. | Claudio Jeker | |
2006-03-09 | KNF, remove some unneded type casts and add some ARGSUSED. This makes lint | Claudio Jeker | |
almost happy. | |||
2006-03-09 | Mark event callbacks with ARGSUSED to silence lint. | Claudio Jeker | |
2006-03-09 | Switch send_packet from char * to void * and from int to size_t. The function | Claudio Jeker | |
is now similar to sendto et al. | |||
2006-03-09 | in_cksum() should return a u_int16_t and not int. Switch a variable to | Claudio Jeker | |
unsigned. Found by lint. | |||
2006-03-09 | if_event_names is only used by interface.c so move it there. | Claudio Jeker | |
2006-03-09 | Log link state changes. | Esben Norby | |
ok claudio@ | |||
2006-03-08 | Remove unused quit flag inherited from bgpd long ago. | Claudio Jeker | |
2006-03-08 | Cleanup with lint. Kill unused variable and fix some types. | Claudio Jeker | |
2006-03-08 | Move procnames from log.h to log.c it is only used there. | Claudio Jeker | |
2006-03-08 | Spaces and other minor cleanup. | Claudio Jeker | |