Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-11 | When inserting a new route add as downstream interfaces just the ones with | Michele Marchetto | |
downstream neighbors or group members. ok claudio@ | |||
2009-04-11 | Show debug informations when a route is added and when a downstream router | Michele Marchetto | |
is added/deleted. Fix endianess issue in rt_match_origin(). ok claudio@ | |||
2009-03-31 | Fixed memory leaks which would occur if the second of two memory | Tobias Stoeckmann | |
allocations fails. looks right deraadt, krw ok henning | |||
2009-03-14 | Initial support for pruning. When every single interface is removed from the | Michele Marchetto | |
downstream list for a particular source send a prune to the upstream router. input and ok claudio@ | |||
2009-03-07 | Get rid of rde_nbr structure as it is no more needed in RDE to make | Michele Marchetto | |
routing decisions. ok claudio@ | |||
2009-03-06 | Make RDE aware of multicast group members per interface. This is needed to | Michele Marchetto | |
make unicast routing decisions. ok claudio@ | |||
2009-02-25 | Fix an invalid pointer dereference in control_close(). If control_connbyfd() | Claudio Jeker | |
fails -- which should never happen -- the function does not return and is accession the NULL set control pointer later on. Found by Matthew Haub. OK deraadt@ | |||
2009-02-03 | Correctly update kernel and mfc when change in routing table happens. | Michele Marchetto | |
ok norby@ | |||
2009-01-27 | Get rid of the 24h timer as it useless here. | Michele Marchetto | |
While there fix minor bugs. ok norby@ | |||
2009-01-25 | Add missing evtimer_set on route hold down timer. | Michele Marchetto | |
ok norby@ | |||
2009-01-24 | Fix an evil typo. | Michele Marchetto | |
ok norby@ | |||
2009-01-20 | revert earlier commit that broke the tree | Todd T. Fries | |
2009-01-19 | Cleanup the functions related to the election of the designated | Michele Marchetto | |
forwarder. ok norby@ | |||
2009-01-19 | When inserting a new route into the kernel set as | Michele Marchetto | |
downstream interfaces the ones with neighbors or group members. ok norby@ | |||
2008-12-07 | Kill src_node structure. It is mostly redundant with rt_node and | Michele Marchetto | |
adds unneeded complexity. Move any stuff to rt_node structure. | |||
2008-12-02 | Initial support for neighbor expiry. | Michele Marchetto | |
When a nbr goes down delete it from the lists of downstream dependent neighbors. OK norby@ | |||
2008-11-24 | Introduce support for route hold down. | Michele Marchetto | |
When a route is deleted we must continue advertising it with a metric of infinity to avoid routing loops. OK norby@ | |||
2008-11-21 | Introduce support for flash updates. | Michele Marchetto | |
They spread routing changes immediately as they happen avoiding wait until the next report interval. OK norby@ | |||
2008-10-21 | Code cleanup. No functional change. | Michele Marchetto | |
OK norby@ | |||
2008-10-17 | bring in findeol() fix from pfctl | Henning Brauer | |
2008-10-03 | Unify code between the various flavors of imsg buffer.c. | Eric Faurot | |
Use unsigned int for msg_iovlen. ok henning@ claudio@ | |||
2008-07-02 | Prevent dvmrpd from using illegal ifindex's. | Esben Norby | |
Report and fix from Matthew Dempsky. | |||
2008-05-12 | Error out with usage line if additional arguments are given after the | Pierre-Yves Ritschard | |
option parsing. Found out the hard way by jdixon on ifstated. ok sobrado@, jdixon@, millert@ | |||
2008-04-28 | tweak previous; | Jason McIntyre | |
2008-04-28 | Improve the dvmrpd(8) manpage. | Esben Norby | |
2008-02-27 | Unbreak parser by initializing topfile correctly. | Marco Pfatschbacher | |
I got fooled by patch(1). Sorry. | |||
2008-02-26 | Have popfile() also close the main config file, | Marco Pfatschbacher | |
but only do the final popfile call after yyparse() is done. This also fixes config reload on SIGHUP for some daemons. Spotted by otto@. OK deraadt@ | |||
2008-01-31 | use a hyphen for "interface-specific" as a compound term. this is | Jason McIntyre | |
not a hard and fast rule (actually it's a form i abuse) but hostname.if.5 currently uses two conflicting forms and this keeps it consistent; | |||
2008-01-31 | do not leak confd on malloc failure in control_accept() | Henning Brauer | |
found by Igor Zinovik <zinovik@cs.karelia.ru> | |||
2007-11-12 | Remove space/tab compression function from lgetc() and replace | Marco Pfatschbacher | |
it with a simple filter in the yylex() loop. The compression in lgetc() didn't happen for quoted strings, thus creating a regression when tabs were used in variables. Some testing by todd@ and pyr@ OK deraadt@ | |||
2007-10-20 | Sync parse.y with recent enhancements in hoststated. | Pierre-Yves Ritschard | |
Fix behavior when running -n. henning@ | |||
2007-10-16 | Allow '=' to end a number in all lexers. | Marco Pfatschbacher | |
Requested and OK deraadt@ | |||
2007-10-16 | in the lex... even inside quotes, a \ followed by space or tab should | Theo de Raadt | |
expand to space or tab, and a \ followed by newline should be ignored (as a line continuation). compatible with the needs of hoststated (which has the most strict quoted string requirements), and ifstated (where one commonly does line continuations in strings). pointed out by mpf, discussed with pyr | |||
2007-10-13 | in all these programs using the same pfctl-derived parse.y, re-unify the | Theo de Raadt | |
yylex implementation and the code which interacts with yylex. this also brings the future potential for include support to all of the parsers. in the future please do not silly modifications to one of these files without checking if you are de-unifying the code. checked by developers in all these areas. | |||
2007-10-11 | next step in the yylex unification: handle quoted strings in a nicer fashion | Theo de Raadt | |
as found in hoststated, and make all the code diff as clean as possible. a few issues remain mostly surrounding include support, which will likely be added to more of the grammers soon. ok norby pyr, others | |||
2007-09-12 | spacing | Theo de Raadt | |
2007-09-11 | macro argument unused, using local instead; spotted by mpf | Theo de Raadt | |
2007-09-11 | extend lex to spot numbers in the stream, without impacting the parsing | Theo de Raadt | |
of ip addresses and such. this change is being pushed into all the pfctl derived parsers, starting with the easy ones; ok claudio michele | |||
2007-09-11 | The same dance as in all other routing daemons. baudrate is 64bit plus | Claudio Jeker | |
initialize iface->baudrate when the interface is created. An additional gimmick don't set the ictl->baudrate twice when building the control message. | |||
2007-09-11 | baudrate 64bit, two more questionable marked for norby | Henning Brauer | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-04-10 | spacing | Michele Marchetto | |
2007-03-27 | Correctly handle connected routes in srt_check_route() | Michele Marchetto | |
OK norby@ | |||
2007-03-26 | Route report packets with metric greater than infinity are legal, so don't | Michele Marchetto | |
drop them. Small typo. OK norby@ | |||
2007-03-21 | Added code to parse unicast routes learned from route report packets. | Michele Marchetto | |
Now we are able to select correctly designated forwarders and downstream dependent routers per interface. Tested and OK norby@ | |||
2007-03-19 | do not signal "connection closed" upstream on EINTR/EAGAIN, from bgpd et al | Henning Brauer | |
2007-03-13 | er,, no, we don't compile everything with -g | Henning Brauer | |
2007-02-28 | double word: a a | David Krause | |
2007-01-29 | Introduce new checks against the received metric to update or delete the route. | Michele Marchetto | |
OK norby@ | |||
2007-01-24 | Ignore SIGPIPE in the parent and RDE as well. | Esben Norby | |
ok claudio@ |