summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2000-05-08Implemented `show route count' which is `show route stats' withMartin Mares
exception that it doesn't print the routes themselves.
2000-05-08Don't crash when the socket gets closed between updates.Martin Mares
Also, this time not only update `remains', but update it right :)
2000-05-08Added `--disable-memcheck' switch which avoids linking of efence/dmalloc,Martin Mares
so that we can run in debugging mode with large routing tables.
2000-05-08Stop feeding the protocol if it suddenly shuts down.Martin Mares
2000-05-08Update `remains' counter correctly.Martin Mares
2000-05-08Use PATH_CONTROL_SOCKET instead of tacking on "bird.ctl" manually.Martin Mares
2000-05-08Forgot to add a spiky comment :)Martin Mares
2000-05-08Autoconf is *evil*. The sysconfdir and similar variables are unusable inMartin Mares
C includes as they contain substitutions specific to make. Worked around by creating sysconf/paths.h which is created from the Makefile instead of by the configure script.
2000-05-08Updated TODO.Martin Mares
2000-05-08Debugging compilation is no longer default. This means that the configurationMartin Mares
file is expected in $prefix/etc etc. Use --enable-debug to request debugging.
2000-05-08`make install' now works.Martin Mares
2000-05-08The bgp_list is gone. Incomming connections are now handled in a muchMartin Mares
more straightforward manner by scanning the active configuration for matching protocols.
2000-05-08Really free attributes.Martin Mares
2000-05-08When reporting a bug(), call abort() instead of exit(), so that weMartin Mares
can analyse the core.
2000-05-08Some less socket error messages.Martin Mares
2000-05-08Don't generate corrupted packets when sending only route deletes.Martin Mares
2000-05-08Don't report refused connections.Martin Mares
2000-05-08Removed the `async' switch which was used for debugging only anyway.Martin Mares
Don't moan when netlink reports lost packets.
2000-05-08bugs_in_attr_cache_hashing--;Martin Mares
2000-05-08Link the instance to the global BGP list as soon as possible.Martin Mares
2000-05-08Incoming buffer must be at least 8KB long.Martin Mares
2000-05-08Use preferences properly.Martin Mares
2000-05-08Don't crash when reporting deleted routes.Martin Mares
Set preferences correctly.
2000-05-08Preference is a configurable parameter.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
2000-05-07Squashed one bug in fib_rehash(). No more routes disappearing as if structMartin Mares
by a lightning :)
2000-05-07Killed one more reference to RTS_RIP_EXT.Martin Mares
2000-05-07Setup of incoming connection is now a separate function.Martin Mares
2000-05-07Added commands `show route protocol <p>' and `show route import <p>' whichMartin 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-06IPv6 support compiles on both glibc 2.0 and 2.1.Martin Mares
2000-05-06Cosmetic fixes.Martin Mares
2000-05-06Fixed silly bug in previous commit.Martin Mares
2000-05-06When 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-05Added skeleton Doc files for the whole developer's documentation.Martin Mares
2000-05-05Connected the `doc' subtree to global makefiles.Martin Mares
All documentation is built in obj/doc (resp. doc/ if you do a stand-alone build). Use `make docs' to make the whole documentation or `make userdocs' resp. `make progdocs' for user manual resp. developer's guide.
2000-05-05Added a tool for processing of developer documentation.Martin Mares
Everything is controlled by Doc files in source directories (see the corresponding programmer's manual entry for the format and look at Doc and lib/Doc for an example). Currently it generates HTML indices and calls kernel-doc to generate per-section HTML files.
2000-05-05First attempt at documenting configuration.Pavel Machek
2000-05-04Removed 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-04Updated.Martin Mares
2000-05-04Unused variables in IPv6 code.Martin Mares
2000-05-04Removed 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-04Added --enable-ipv6 which tells configure to select the right configurationMartin Mares
for IPv6 automatically. Added --enable-warnings which turns off some more warnings. Default protocol list now depends on --enable-ipv6.
2000-05-04Spelling fixes.Pavel Machek
2000-05-04IPv6 BGP support finished. Also simplified the BGP stuff a bit.Martin Mares
2000-05-04pxlen works even in IPv6 mode.Martin Mares
2000-05-04Display examples more nicelyPavel Machek