Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2006-03-08 | Last kroute.c commit changed the meaning of the flags so check them correctly. | Claudio Jeker | |
OK norby@ | |||
2006-03-08 | Fix logic of the kroute code. First of all there was a porblem if a prefix | Claudio Jeker | |
is known via kernel and ospf. If the kernel route is removed the ospf one was not added to the FIB. This is an uncommon event so it is OK to request an update from the RIB in this case. Additionally ospfd treated bgpd inserted routes like static routes. This is wrong because IGP routes habe a higher preference over EGP routes. In this case a bgpd route needs to be overridden by a ospfd one. With these to fixes bgpd and ospfd start to play nicely together. OK norby@ | |||
2006-03-08 | Check for implied acks. If we receive an update that is on our retransmission | Claudio Jeker | |
queue for the neighbor there is no need to send back an ack. | |||
2006-03-08 | Document "set community delete ..." and sync that section with the one | Claudio Jeker | |
from the PARAMETERS section. ok henning@ | |||
2006-03-08 | propagate stuff to be able to explicitly clean-up repositories. | Marc Espie | |
(we can't use a normal destructor, since this will be called for each fork()ed subprocess). | |||
2006-03-08 | fix race condition in SCP for real. | Marc Espie | |
We can't control a grand-child death through gzip, so stop spawning grand-children: create two children connected by hand through a pipe, and when we close gzip, explicitly wait for the second child to die as well. This avoids race conditions between sigpipe and sigusr1. (and as usual, the resulting code is easier to follow once you get through the pipe/fork). Thanks theo for the comment. ;-) | |||
2006-03-07 | Fix a bug reported by Xavier Beaudouin. On config reloads set parameters | Claudio Jeker | |
inside group blocks were reset to default values. The problem was that group ids changed on reload as soon as a new peer was added to one group. Make sure that group ids remain the same over reloads a similar thing is already done for peer ids. ok henning@ | |||
2006-03-07 | "set attribute ..." in neighbor blocks needs better documentation. | Claudio Jeker | |
With input from jmc@ and ok henning@ | |||
2006-03-07 | do not write partial files out if the PKG_CACHE filesystem overflows. | Marc Espie | |
2006-03-07 | Use 65535 instead of 0xffff to specify the maximum number that can be used | Claudio Jeker | |
for the local part of communities. | |||
2006-03-07 | Fix pkg_copy(). | Bernd Ahlers | |
2006-03-07 | properly zap temporary file. | Marc Espie | |
2006-03-07 | rendez-vous with subchild through signal USR1. | Marc Espie | |
2006-03-07 | make pkg_copy be overidable by subclass. | Marc Espie | |
2006-03-07 | only the grand child can have issues | Marc Espie | |
2006-03-07 | beef up this file a little; ok grange | Jason McIntyre | |
2006-03-07 | special case: repository holds several packages (say, old versions), and | Marc Espie | |
you choose the most recent one, which also happens to be the currently installed version -> then explicitly say no update is needed and proceed. | |||
2006-03-07 | let scp repositories work. Avoid run-away processes by just having one single | Marc Espie | |
ssh connection for each repository. | |||
2006-03-07 | pass the grandchild pid through the pipe, in order to be able to monitor it. | Marc Espie | |