summaryrefslogtreecommitdiffstats
path: root/nest
AgeCommit message (Collapse)Author
2000-06-03Minor changes to the progdocs.Martin Mares
2000-06-03More documentation.Martin Mares
2000-06-02Documented protocol hooks.Martin Mares
2000-06-02Added documentation on protocols.Martin Mares
Protocol hooks deserve an extra chapter (to come soon).
2000-06-02Better description of the route distribution process.Martin Mares
2000-06-02Documentation on routing tables and route attributes.Martin Mares
2000-06-02Removed rta_find() since nobody uses it and it's more convenientMartin Mares
to use ea_find() directly.
2000-06-01Documentation.Martin Mares
2000-06-01Removed comments about workings of the old neighbor cache which areMartin Mares
(1) obsolete and (2) replaced by the progdoc.
2000-06-01Documented.Martin Mares
2000-06-01FIB documentation.Martin Mares
I've changed the init callback type to a typedef to work around a bug in kernel-doc I'm too lazy to hunt now.
2000-06-01Inactive sticky neighbors have no scope.Martin Mares
2000-06-01Modified the neighbor cache to remember local addresses as well.Martin Mares
neighbor->scope now contains proper address scope which is zero (SCOPE_HOST) for local addresses, higher (SCOPE_LINK, ..., SCOPE_UNIVERSE) for remote ones.
2000-05-30Route attributes for OSPF.Martin Mares
2000-05-30Killed bug in merging of dynamic attributes.Martin Mares
2000-05-30Better formatting of protocol status.Martin Mares
2000-05-30Added read-only access to all required fields in rta.Pavel Machek
2000-05-30Better rt dumping.Ondrej Filip
2000-05-30Tracing of CLI connections/commands can be now controlledMartin Mares
by `debug commands <level>' in the configuration. Level 0 means no tracing, 1 means connections only, 2 includes all commands.
2000-05-28To find out a type of route (external, inter/intra area)Ondrej Filip
2000-05-19Routing table garbage collector gets really called.Martin Mares
2000-05-19Fixed a very nasty bug in FIB iterators.Martin Mares
2000-05-19Fixed freeing of non-embedded extended attributes.Martin Mares
2000-05-19No more problems when protocols gets disabled during feeding.Martin Mares
2000-05-19Added as_path_get_first().Martin Mares
2000-05-19Fixed a buglet in asynchronous feeding and increased maximum numberMartin Mares
of routes allowed per feeding phase.
2000-05-19Asynchronous feeding of protocols.Martin Mares
2000-05-16Fixed incorrect error message about router ID syntax.Martin Mares
2000-05-16Don't segfault when someone adds passwords.Pavel Machek
2000-05-16Password same now actually worksPavel Machek
2000-05-16Don't log state changes if nothing user-visible has changed.Martin Mares
2000-05-15Cleanup of configuration.Martin Mares
o Use `expr' instead of `NUM' and `ipa' instead of `IPA', so that defined symbols work everywhere. o `define' now accepts both numbers and IP addresses. o Renamed `ipa' in filters to `fipa'. Pavel, please update filters to accept define'd symbols as well.
2000-05-13Added `show route for <prefix-or-ipa>' which looks up route leading toMartin Mares
given network.
2000-05-13Added fib_route() which does (although very slow) lookup of longest-matchMartin Mares
routing in a FIB.
2000-05-13Unified parsing of prefixes.Martin Mares
Had to rename `prefix' in filters to `fprefix'.
2000-05-13Changed semantics of the rt_update hook. The attribute list we pass nowMartin Mares
contains all attributes, not just the temporary ones. This avoids having to merge the lists inside protocols or doing searches on both of them. Also, do filtering of routes properly. (I'd like to avoid it, but it's needed at least in the krt protocol.)
2000-05-11Fixed nasty segfault in rip.Pavel Machek
2000-05-10password_same utility functionPavel Machek
2000-05-10Added more convient interface for ea_find.Pavel Machek
What is special about int default;? Compiler chokes on that!
2000-05-09rt_prune: Don't kill routes from protocols in FS_FEEDING state. If debugging,Martin Mares
call fib_check() on the table's fib.
2000-05-08Several simplifications of the fib iterators.Martin Mares
2000-05-08Implemented `show route count' which is `show route stats' withMartin Mares
exception that it doesn't print the routes themselves.
2000-05-08Stop feeding the protocol if it suddenly shuts down.Martin Mares
2000-05-08Really free attributes.Martin Mares
2000-05-08bugs_in_attr_cache_hashing--;Martin Mares
2000-05-08Use preferences properly.Martin Mares
2000-05-08Fixed `show route primary'.Martin Mares
2000-05-08Debugged printing and pruning of neighbor cache entries.Martin Mares
2000-05-07Don't count networks with no routes (they are not displayed at all andMartin Mares
will be removed during the next garbage collection pass).
2000-05-07Implemented `show route <...> stats'.Martin Mares