summaryrefslogtreecommitdiffstats
path: root/proto/rip/rip.c
AgeCommit message (Collapse)Author
2011-11-07Implements protocol templates.Ondrej Zajicek
Based on the patch from Alexander V. Chernikov. Extended to support almost all protocols. Uses 'protocol bgp NAME from TEMPLATE { ... }' syntax.
2011-10-26Fixes sockets for IPv4 RIP.Ondrej Zajicek
Thanks Roman Hoog Antink for a suggestion.
2011-03-28Minor changes in addresses.Ondrej Zajicek
Mainly changes IA_UNNUMBERED to IA_PEER and adds IA_HOST. Also do not show broadcast addr in show interfaces. Nobody cares for that.
2010-09-03Fixes a crash in RIP during reconfigure.Ondrej Zajicek
2010-09-03Fixes a memory leak in RIP.Ondrej Zajicek
2010-03-14Temporary OSPF commit - sockets.Ondrej Zajicek
2010-02-21Fix configure to enable warnings and fix most of them.Ondrej Zajicek
2010-02-13Removes phantom protocol from the pipe design.Ondrej Zajicek
It seems that by adding one pipe-specific exception to route announcement code and by adding one argument to rt_notify() callback i could completely eliminate the need for the phantom protocol instance and therefore make the code more straightforward. It will also fix some minor bugs (like ignoring debug flag changes from the command line).
2009-09-04Temporary OSPFv3 development commit (changing multicast support).Ondrej Zajicek
2009-06-01The pipe cleanup.Ondrej Zajicek
2009-05-31Changes pipes to transfer all routes between routing table, not just optimal ↵Ondrej Zajicek
routes.
2009-05-06A change in OSPF and RIP interface patterns.Ondrej Zajicek
Allows to add more interface patterns to one common 'options' section like: interface "eth3", "eth4" { options common to eth3 and eth4 }; Also removes undocumented and unnecessary ability to specify more interface patterns with different 'options' sections: interface "eth3" { options ... }, "eth4" { options ... };
2008-11-08Proper format functions for ORIGINATOR_ID, CLUSTER_LISTOndrej Zajicek
2004-07-15Minor bugfix to compile bird in IPv6.Ondrej Filip
2004-07-13Bugfix - RIP now updates routes with worse metric.Ondrej Filip
2004-06-26Password management redesigned (untested).Ondrej Filip
2004-06-24Small typo changes.Ondrej Filip
2004-06-23Hotfix to problem with metric change reported by Luca.Ondrej Filip
2004-06-23P->magic used just in LOCAL_DEBUG modeOndrej Filip
2004-06-05... and in rip (there are even unused functions!).Martin Mares
2004-05-31Killed a couple of unused variables.Martin Mares
We really should compile with warnings enabled.
2004-05-31Make RIP nolisten mode actually work. The socket is required forMartin Mares
sending, the received data has to be discarded instead. (patch by Andreas Steinmetz modified by me)
2003-12-06Fix reporting of RIP socket errors. Thanks to Eric Leblond for the patch.Martin Mares
2002-03-10Applied Pavel's fix for broadcast/multicast mode.Martin Mares
2000-06-21RIP bugfixPavel Machek
2000-06-07RIPv6 now works.Pavel Machek
2000-06-07rip ipv6 bugfixPavel Machek
2000-06-07Fixes to the progdoc.Martin Mares
2000-06-07Spelling fixes to progdoc.Martin Mares
2000-06-05Better documentation. There are functions whose description is good whenPavel Machek
reading source but whose documentation does not belong to progdocs.
2000-06-05Add safety check.Pavel Machek
2000-06-05Updates to both programmers and users docPavel Machek
2000-06-04Don't set precedence and TTL for the dummy socket.Martin Mares
2000-06-04debug -> DBGMartin Mares
2000-06-01Updated RIP to new neighbor cache semantics. When presented with next hopMartin Mares
equal to a local address, just ignore the route (as it is usually just an external route exported by us echoed by some RIP peer), when given an invalid next hop, moan to the log.
2000-05-31IPv6: Absolutize link-scope addresses of incoming packets.Martin Mares
IPv6 socket interface is hopefully right now.
2000-05-30Removed several unused local variables.Martin Mares
2000-05-19Latest changes by Pavel have removed the error messages printed afterMartin Mares
unsuccessful socket open, but replaced them by segmentatio fault! Grrrrrrrrr.
2000-05-19Less error messages in case sk_open fails.Pavel Machek
2000-05-19Added name of protocol to messages being logged.Pavel Machek
2000-05-19Commented out the `inserting entry which is already there' message sinceMartin Mares
it's pretty normal: during feeding of the protocol, a new route can appear which will be announced normally and then repeated by the feeding process.
2000-05-17Minor cleaningPavel Machek
2000-05-16Turned off LOCAL_DEBUG.Martin Mares
2000-05-16Interface dummy is too strange for me... but psst, that's secret.Pavel Machek
2000-05-16Rip should now reconfigure itself only if needed.Pavel Machek
2000-05-11Several minor RIP changes (Pavel, please check as usually):Martin Mares
o Use FIB_ITERATE_INIT instead of calling the function fit_init() which is explictly marked as private in route.h. o When printing trace messages, don't spit out protocol name twice. o Some messages are a bit more verbose. o Added a bunch of FIXME's. o When running in broadcast mode, don't forget to bind the local end of the socket to the same broadcast address, so that we don't get the broadcasts looped back via different interface. I'm just going to look up the same problem for multicasts.
2000-05-11Fixed nasty segfault in rip.Pavel Machek
2000-05-11Some more paranoia into rip_insert and rip_deletePavel Machek
2000-05-11Unused variable killed.Pavel Machek
2000-05-10use password_same utility functionPavel Machek