Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-06-01 | Inactive sticky neighbors have no scope. | Martin Mares | |
2000-06-01 | Modified 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-30 | Route attributes for OSPF. | Martin Mares | |
2000-05-30 | Killed bug in merging of dynamic attributes. | Martin Mares | |
2000-05-30 | Better formatting of protocol status. | Martin Mares | |
2000-05-30 | Added read-only access to all required fields in rta. | Pavel Machek | |
2000-05-30 | Better rt dumping. | Ondrej Filip | |
2000-05-30 | Tracing of CLI connections/commands can be now controlled | Martin Mares | |
by `debug commands <level>' in the configuration. Level 0 means no tracing, 1 means connections only, 2 includes all commands. | |||
2000-05-28 | To find out a type of route (external, inter/intra area) | Ondrej Filip | |
2000-05-19 | Routing table garbage collector gets really called. | Martin Mares | |
2000-05-19 | Fixed a very nasty bug in FIB iterators. | Martin Mares | |
2000-05-19 | Fixed freeing of non-embedded extended attributes. | Martin Mares | |
2000-05-19 | No more problems when protocols gets disabled during feeding. | Martin Mares | |
2000-05-19 | Added as_path_get_first(). | Martin Mares | |
2000-05-19 | Fixed a buglet in asynchronous feeding and increased maximum number | Martin Mares | |
of routes allowed per feeding phase. | |||
2000-05-19 | Asynchronous feeding of protocols. | Martin Mares | |
2000-05-16 | Fixed incorrect error message about router ID syntax. | Martin Mares | |
2000-05-16 | Don't segfault when someone adds passwords. | Pavel Machek | |
2000-05-16 | Password same now actually works | Pavel Machek | |
2000-05-16 | Don't log state changes if nothing user-visible has changed. | Martin Mares | |
2000-05-15 | Cleanup 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-13 | Added `show route for <prefix-or-ipa>' which looks up route leading to | Martin Mares | |
given network. | |||
2000-05-13 | Added fib_route() which does (although very slow) lookup of longest-match | Martin Mares | |
routing in a FIB. | |||
2000-05-13 | Unified parsing of prefixes. | Martin Mares | |
Had to rename `prefix' in filters to `fprefix'. | |||
2000-05-13 | Changed semantics of the rt_update hook. The attribute list we pass now | Martin 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-11 | Fixed nasty segfault in rip. | Pavel Machek | |
2000-05-10 | password_same utility function | Pavel Machek | |
2000-05-10 | Added more convient interface for ea_find. | Pavel Machek | |
What is special about int default;? Compiler chokes on that! | |||
2000-05-09 | rt_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-08 | Several simplifications of the fib iterators. | Martin Mares | |
2000-05-08 | Implemented `show route count' which is `show route stats' with | Martin Mares | |
exception that it doesn't print the routes themselves. | |||
2000-05-08 | Stop feeding the protocol if it suddenly shuts down. | Martin Mares | |
2000-05-08 | Really free attributes. | Martin Mares | |
2000-05-08 | bugs_in_attr_cache_hashing--; | Martin Mares | |
2000-05-08 | Use preferences properly. | Martin Mares | |
2000-05-08 | Fixed `show route primary'. | Martin Mares | |
2000-05-08 | Debugged printing and pruning of neighbor cache entries. | Martin Mares | |
2000-05-07 | Don't count networks with no routes (they are not displayed at all and | Martin Mares | |
will be removed during the next garbage collection pass). | |||
2000-05-07 | Implemented `show route <...> stats'. | Martin Mares | |
2000-05-07 | Squashed one bug in fib_rehash(). No more routes disappearing as if struct | Martin Mares | |
by a lightning :) | |||
2000-05-07 | Killed one more reference to RTS_RIP_EXT. | Martin Mares | |
2000-05-07 | Added commands `show route protocol <p>' and `show route import <p>' which | Martin Mares | |
show the routing table as exported to the protocol given resp. as returned from its import control hook. To get handling of filtered extended attributes right (even in the old `show route where <filter>' command), the get_route_info hook gets an attribute list and all protocol specific rte attributes are contained there as temporary ones. Updated RIP to do that. Added ea_append() which joins two ea_list's. | |||
2000-05-06 | Cosmetic fixes. | Martin Mares | |
2000-05-06 | Fixed silly bug in previous commit. | Martin Mares | |
2000-05-06 | When rte_update is called for an identical route, don't announce anything. | Martin Mares | |
Please implement the rte_same hook in your protocols. It should just compare your metrics stored directly in rte, the rest is done by the core. | |||
2000-05-05 | Added skeleton Doc files for the whole developer's documentation. | Martin Mares | |
2000-05-04 | Removed RTS_RIP_EXT. | Martin Mares | |
2000-05-04 | #ifdef out lots of debugging information. | Martin Mares | |
The long resource/routing table dump printed upon startup is gone now and if you wish to see it, just send bird SIGUSR1 or use the `debug' commands. | |||
2000-05-04 | Removed a lot of unused variables. | Martin Mares | |
Please try compiling your code with --enable-warnings to see them. (The unused parameter warnings are usually bogus, the unused variable ones are very useful, but gcc is unable to control them separately.) | |||
2000-05-04 | Switched off LOCAL_DEBUG. | Martin Mares | |