]> git.ipfire.org Git - thirdparty/bird.git/log
thirdparty/bird.git
27 years agoGrrr, forgot to commit the event routines themselves :|
Martin Mares [Thu, 11 Feb 1999 22:18:36 +0000 (22:18 +0000)] 
Grrr, forgot to commit the event routines themselves :|

27 years agoAdded simple event scheduling system to avoid recursive calling
Martin Mares [Thu, 11 Feb 1999 21:18:26 +0000 (21:18 +0000)] 
Added simple event scheduling system to avoid recursive calling
of various callbacks.

Events are just another resource type objects (thus automatically freed
and unlinked when the protocol using them shuts down). Each event can
be linked in at most one event list. For most purposes, just use the
global event list handled by the following functions:

ev_schedule Schedule event to be called at the next event
scheduling point. If the event was already
scheduled, it's just re-linked to the end of the list.
ev_postpone Postpone an already scheduled event, so that it
won't get called. Postponed events can be scheduled
again by ev_schedule().

You can also create custom event lists to build your own synchronization
primitives. Just use:

ev_init_list to initialize an event list
ev_enqueue to schedule event on specified event list
ev_postpone works as well for custom lists
ev_run_list to run all events on your custom list
ev_run to run a specific event and dequeue it

27 years agoPropagate depend into all subdirectories; make rip compile after
Pavel Machek [Mon, 8 Feb 1999 22:50:32 +0000 (22:50 +0000)] 
Propagate depend into all subdirectories; make rip compile after
latest mj's changes.

27 years agoSynced Linux sysdeps to new interface.
Martin Mares [Fri, 5 Feb 1999 21:39:21 +0000 (21:39 +0000)] 
Synced Linux sysdeps to new interface.

27 years agoSynced kernel interface to new interface.
Martin Mares [Fri, 5 Feb 1999 21:38:50 +0000 (21:38 +0000)] 
Synced kernel interface to new interface.

27 years agoModified static router to use new interface.
Martin Mares [Fri, 5 Feb 1999 21:38:22 +0000 (21:38 +0000)] 
Modified static router to use new interface.

27 years agoImplemented new configuration/reconfiguration interface and defined protocol
Martin Mares [Fri, 5 Feb 1999 21:37:34 +0000 (21:37 +0000)] 
Implemented new configuration/reconfiguration interface and defined protocol
state machines. Full explanation will follow soon.

27 years agoAdded several parentheses to MIN/MAX macros.
Martin Mares [Fri, 5 Feb 1999 21:29:19 +0000 (21:29 +0000)] 
Added several parentheses to MIN/MAX macros.

27 years agoFew fixes in parsing of filters
Pavel Machek [Wed, 3 Feb 1999 12:28:16 +0000 (12:28 +0000)] 
Few fixes in parsing of filters

27 years agoReplaced the old ugly ipv6 compilation hack by a conditional in Modules.
Martin Mares [Sat, 23 Jan 1999 21:08:59 +0000 (21:08 +0000)] 
Replaced the old ugly ipv6 compilation hack by a conditional in Modules.

27 years agoFilter all `Modules' files through C preprocessor, so that they can
Martin Mares [Sat, 23 Jan 1999 21:08:36 +0000 (21:08 +0000)] 
Filter all `Modules' files through C preprocessor, so that they can
reference BIRD configuration.

By the way: Do you know GCC by default does `#define unix 1'?

27 years agofilters_init() renamed to filters_postconfig().
Pavel Machek [Fri, 15 Jan 1999 18:13:55 +0000 (18:13 +0000)] 
filters_init() renamed to filters_postconfig().

27 years agoOriginal `expr' is back, filter expressions renamed to `term'.
Martin Mares [Fri, 15 Jan 1999 18:04:28 +0000 (18:04 +0000)] 
Original `expr' is back, filter expressions renamed to `term'.

In the future, we'll allow any filter term in place of `expr' and we'll
just evaluate it immediately, but not now as we have no evaluation
routines.

27 years agoAdded bird.conf to .cvsignore and created an example configuration file.
Martin Mares [Fri, 15 Jan 1999 17:18:41 +0000 (17:18 +0000)] 
Added bird.conf to .cvsignore and created an example configuration file.

If you want to run bird now, just copy doc/bird.conf.example as bird.conf
and edit it to suit your needs.

27 years agoKilled duplicate %type for expr.
Martin Mares [Fri, 15 Jan 1999 16:59:26 +0000 (16:59 +0000)] 
Killed duplicate %type for expr.

27 years agoMake filters actually compiled.
Pavel Machek [Fri, 15 Jan 1999 16:52:14 +0000 (16:52 +0000)] 
Make filters actually compiled.

27 years agoFilters, second try. This time they have their own directory.
Pavel Machek [Fri, 15 Jan 1999 16:49:17 +0000 (16:49 +0000)] 
Filters, second try. This time they have their own directory.

27 years agoPropagate "depend" target to real top-level Makefile.
Martin Mares [Fri, 15 Jan 1999 16:40:14 +0000 (16:40 +0000)] 
Propagate "depend" target to real top-level Makefile.

27 years ago#if 1 that creeped into cvs killed.
Pavel Machek [Fri, 15 Jan 1999 16:13:51 +0000 (16:13 +0000)] 
#if 1 that creeped into cvs killed.

27 years agoBe a tiny bit more verbose.
Pavel Machek [Fri, 15 Jan 1999 14:42:55 +0000 (14:42 +0000)] 
Be a tiny bit more verbose.

27 years agoFilters added. They are unable to do anything interesting for now
Pavel Machek [Fri, 15 Jan 1999 14:41:51 +0000 (14:41 +0000)] 
Filters added. They are unable to do anything interesting for now
(with exception of printing integers to screen), but they exist.

27 years agoProperly initialize filters. Also bumped version to 0.0.0 as it
Pavel Machek [Fri, 15 Jan 1999 14:40:50 +0000 (14:40 +0000)] 
Properly initialize filters. Also bumped version to 0.0.0 as it
actually does something.

27 years agoFixed trivial bug in naming of `depend' file. Argh.
Martin Mares [Tue, 12 Jan 1999 20:36:18 +0000 (20:36 +0000)] 
Fixed trivial bug in naming of `depend' file. Argh.

27 years agoMake it compile again (stupid makefiles!), make quiet option work
Pavel Machek [Tue, 12 Jan 1999 16:50:38 +0000 (16:50 +0000)] 
Make it compile again (stupid makefiles!), make quiet option work
(multicast/broadcast options are currently unimplemented).

27 years agoKeep protocol data out of iface_patt.
Pavel Machek [Tue, 12 Jan 1999 16:41:34 +0000 (16:41 +0000)] 
Keep protocol data out of iface_patt.

27 years agoPatterns expanded in the right way
Pavel Machek [Tue, 12 Jan 1999 16:40:55 +0000 (16:40 +0000)] 
Patterns expanded in the right way

27 years agoInitialize only protocols which are compiled in :)
Martin Mares [Sun, 10 Jan 1999 00:26:11 +0000 (00:26 +0000)] 
Initialize only protocols which are compiled in :)

27 years agoFew last-minute bug fixes.
Martin Mares [Sun, 10 Jan 1999 00:25:50 +0000 (00:25 +0000)] 
Few last-minute bug fixes.

27 years agoNew makefiles. Includes support for out-of-source-tree builds.
Martin Mares [Sun, 10 Jan 1999 00:18:32 +0000 (00:18 +0000)] 
New makefiles. Includes support for out-of-source-tree builds.

27 years agoFirst step of "autoconfization". Created a configure script which
Martin Mares [Sat, 9 Jan 1999 15:02:11 +0000 (15:02 +0000)] 
First step of "autoconfization". Created a configure script which
guesses most system-dependent parameters and determines name of system
configuration file (sysdep/cf/...) with the remaining ones.

To compile BIRD, you now need to do:

autoconf # Create configure from configure.in
./configure # Run configure script
make # Compile everything

Configuration files:

sysdep/config.h Master config file
sysdep/autoconf.h Parameters determined by configure script
sysdep/cf/*.h Fixed system configuration we're unable
to guess.

Makefiles are still the original ones, but this will change soon.

27 years agoBird now uses fib structure instead of linklist.
Pavel Machek [Tue, 22 Dec 1998 19:41:04 +0000 (19:41 +0000)] 
Bird now uses fib structure instead of linklist.

27 years agoOops, previous modification for passing NULL to fib_init() did not
Pavel Machek [Tue, 22 Dec 1998 19:20:43 +0000 (19:20 +0000)] 
Oops, previous modification for passing NULL to fib_init() did not
compile :-(.

27 years agoAllow NULL to init_fib().
Pavel Machek [Tue, 22 Dec 1998 18:55:49 +0000 (18:55 +0000)] 
Allow NULL to init_fib().

27 years agolog(), die() and bug() messages shound NOT contain trailing newlines.
Martin Mares [Sun, 20 Dec 1998 14:29:06 +0000 (14:29 +0000)] 
log(), die() and bug() messages shound NOT contain trailing newlines.

27 years agodie() -> bug() where appropriate.
Martin Mares [Sun, 20 Dec 1998 14:27:37 +0000 (14:27 +0000)] 
die() -> bug() where appropriate.

27 years agoAdded #if 0 to rip_postconfig(), so that it doesn't crash whole daemon
Martin Mares [Sun, 20 Dec 1998 14:26:57 +0000 (14:26 +0000)] 
Added #if 0 to rip_postconfig(), so that it doesn't crash whole daemon
when RIP is unconfigured.

die() -> bug()

27 years agoFiner grained logging levels:
Martin Mares [Sun, 20 Dec 1998 14:24:35 +0000 (14:24 +0000)] 
Finer grained logging levels:

#define L_DEBUG "\001"   /* Debugging messages */
#define L_INFO "\002"    /* Informational messages */
#define L_WARN "\003"    /* Warnings */
#define L_ERR "\004"     /* Errors */
#define L_AUTH "\005"    /* Authorization failed etc. */
#define L_FATAL "\006"   /* Fatal errors */
#define L_TRACE "\002"   /* Protocol tracing */
#define L_INFO "\003"    /* Informational messages */
#define L_REMOTE "\004"  /* Remote protocol errors */
#define L_WARN "\004"    /* Local warnings */
#define L_ERR "\005"     /* Local errors */
#define L_AUTH "\006"    /* Authorization failed etc. */
#define L_FATAL "\007"   /* Fatal errors */
#define L_BUG "\010"     /* BIRD bugs */

Introduced bug() which is like die(), but with level L_BUG. Protocols
should _never_ call die() as it should be used only during initialization
and on irrecoverable catastrophic events like out of memory.

Also introduced ASSERT() which behaves like normal assert(), but it calls
bug() when assertion fails. When !defined(DEBUGGING), it gets ignored.

27 years agoWhen printing a routing table, fib_check() it.
Martin Mares [Sun, 20 Dec 1998 14:01:37 +0000 (14:01 +0000)] 
When printing a routing table, fib_check() it.

27 years agoRewrote fib functions to make them insert/delete/asynchronous-walk safe.
Martin Mares [Sun, 20 Dec 1998 14:01:20 +0000 (14:01 +0000)] 
Rewrote fib functions to make them insert/delete/asynchronous-walk safe.
This is implemented in a way similar to lib/slists.h, but it took some
more effort to make rehashing not disturb the readers. We do it by just
taking _highest_ k bits of ipa_hash as our hash value and sorting each
box by whole ipa_hash().

Consult FIB_ITERATE_* macros in nest/route.h.

Implemented fib_check() debugging function and also rewrote the rehashing
algorithm to use better thresholds and not to waste time by rehashing
forth and back.

27 years agoNew hash functions according to benchmarks posted yesterday. (The IPv6
Martin Mares [Sun, 20 Dec 1998 13:57:49 +0000 (13:57 +0000)] 
New hash functions according to benchmarks posted yesterday. (The IPv6
version has not been benchmarked yet due to insufficient test data.)
Now ipa_hash() returns a uniformely distributed 16-bit value.

27 years agoImplemented deletion/insertion/asynchronous-walk lists.
Martin Mares [Sun, 20 Dec 1998 13:56:27 +0000 (13:56 +0000)] 
Implemented deletion/insertion/asynchronous-walk lists.
For example of their use, look at comments in lib/slists.h.

27 years agoVariance estimation fixed.
Martin Mares [Sat, 19 Dec 1998 21:53:28 +0000 (21:53 +0000)] 
Variance estimation fixed.

27 years agoAdded several tools for fib hashing function analysis. It turned out
Martin Mares [Sat, 19 Dec 1998 11:51:47 +0000 (11:51 +0000)] 
Added several tools for fib hashing function analysis. It turned out
we can use very simple function which is monotonic with respect
to re-hashing:

n ^= n >> 16;
n ^= n << 10;
h = (n >> (16 - o)) & ((1 << o) - 1);

where o is table order. Statistical analysis for both backbone routing
table and local OSPF routing tables gives values near theoretical
optimum for uniform distribution (see ips.c for formulae).

The trick is very simple: We always calculate a 16-bit hash value n and
use o most significant bits (this gives us monotonity wrt. rehashing
if we sort the chains by the value of n). The first shift/xor pair
reduces the IP address to a 16-bit one, the second pair makes higher
bits of the 16-bit value uniformly distributed even for tables containing
lots of long prefixes (typical interior routing case with 24-bit or even
longer prefixes).

27 years agodebug() -> DBG() in rip.
Pavel Machek [Wed, 9 Dec 1998 20:08:57 +0000 (20:08 +0000)] 
debug() -> DBG() in rip.

27 years agoInitial multicast support (can not work, but skeleton is there)
Pavel Machek [Wed, 9 Dec 1998 15:22:40 +0000 (15:22 +0000)] 
Initial multicast support (can not work, but skeleton is there)

27 years agoHopefully finished kernel syncer (krt) rewrite:
Martin Mares [Tue, 8 Dec 1998 18:37:58 +0000 (18:37 +0000)] 
Hopefully finished kernel syncer (krt) rewrite:

  o  Interface syncing is now a part of krt and it can have configurable
     parameters. Actually, the only one is scan rate now :)
  o  Kernel routing table syncing is now synchronized with interface
     syncing (we need the most recent version of the interface list
     to prevent lots of routes to non-existent destinations from
     appearing). Instead of its own timer, we just check if it's
     route scan time after each iface list scan.
  o  Syncing of device routes implemented.
  o  CONFIG_AUTO_ROUTES should control syncing of automatic device routes.
  o  Rewrote krt_remove_route() to really remove routes :)
  o  Better diagnostics.
  o  Fixed a couple of bugs.

27 years agoFixed a couple of bugs in static protocol. All static routes except device
Martin Mares [Tue, 8 Dec 1998 18:31:31 +0000 (18:31 +0000)] 
Fixed a couple of bugs in static protocol. All static routes except device
ones seem to work well.

27 years agoAdded source RTS_DUMMY for temporary routes. They should never appear
Martin Mares [Tue, 8 Dec 1998 18:30:35 +0000 (18:30 +0000)] 
Added source RTS_DUMMY for temporary routes. They should never appear
in the main table.

27 years agoRewritten kernel syncer. Now uses the rta trickery I've introduced yesterday
Martin Mares [Tue, 8 Dec 1998 16:20:13 +0000 (16:20 +0000)] 
Rewritten kernel syncer. Now uses the rta trickery I've introduced yesterday
and does things "the right way". Few things are still missing (device
routes etc.), I'll add them later in the evening.

27 years agoMinor rte/rta interface changes:
Martin Mares [Mon, 7 Dec 1998 21:59:15 +0000 (21:59 +0000)] 
Minor rte/rta interface changes:

  o  rte can now contain a pointer to both cached and uncached rta. Protocols
     which don't need their own attribute caching can now just fill-in a rta,
     link it to rte without any calls to attribute cache and call rte_update()
     which will replace rte->attrs by a cached copy.

  o  In order to support this, one of previously pad bytes in struct rta
     now holds new attribute flags (RTAF_CACHED). If you call rte_update()
     with uncached rta, you _must_ clear these flags. In other cases rta_lookup()
     sets it appropriately.

  o  Added rte_free() which is useful when you construct a rte and then the
     circumstances change and you decide not to use it for an update. (Needed
     for temporary rte's in kernel syncer...)

27 years agoComparison of kernel reject routes fixed.
Martin Mares [Mon, 7 Dec 1998 10:16:15 +0000 (10:16 +0000)] 
Comparison of kernel reject routes fixed.

27 years agoKRF_* flags moved to krt.h as they are internal to kernel syncer,
Martin Mares [Mon, 7 Dec 1998 10:15:42 +0000 (10:15 +0000)] 
KRF_* flags moved to krt.h as they are internal to kernel syncer,
fib->pad0,pad1 renamed to x0,x1 and in case of struct net x0 is reserved
for kernel syncing as well.

27 years agoAll static routes except for device ones should work and appear/disappear
Martin Mares [Sun, 6 Dec 1998 23:13:31 +0000 (23:13 +0000)] 
All static routes except for device ones should work and appear/disappear
when their destination comes on/off link. Deserves better testing :)

See example in bird.conf.

27 years agoRemoved protocol-specific data in rte for protocol static since no
Martin Mares [Sun, 6 Dec 1998 23:11:47 +0000 (23:11 +0000)] 
Removed protocol-specific data in rte for protocol static since no
such data ever existed.

27 years agoAesthetic fix for neighbor cache debug dump.
Martin Mares [Sun, 6 Dec 1998 23:11:18 +0000 (23:11 +0000)] 
Aesthetic fix for neighbor cache debug dump.

27 years agoAdded new rule for prefix length / netmask.
Martin Mares [Sun, 6 Dec 1998 23:10:45 +0000 (23:10 +0000)] 
Added new rule for prefix length / netmask.

27 years agocf_error() now accepts any format strings instead of just an error
Martin Mares [Sun, 6 Dec 1998 23:10:28 +0000 (23:10 +0000)] 
cf_error() now accepts any format strings instead of just an error
message. Also added extra kludge to get rid of collisions of REJECT
symbols.

27 years agoAdded skeleton of static route protocol.
Martin Mares [Sun, 6 Dec 1998 18:21:23 +0000 (18:21 +0000)] 
Added skeleton of static route protocol.

27 years agoKernel syncer is now configurable. It will probably need some more
Martin Mares [Sun, 6 Dec 1998 17:40:42 +0000 (17:40 +0000)] 
Kernel syncer is now configurable. It will probably need some more
options, but at least basic tuning is possible now.

27 years agoFixed bug in CF_ADDTO. How it's possible it has ever worked?
Martin Mares [Sun, 6 Dec 1998 17:39:08 +0000 (17:39 +0000)] 
Fixed bug in CF_ADDTO. How it's possible it has ever worked?

27 years agoAdded rule "bool" for boolean switches.
Martin Mares [Sun, 6 Dec 1998 17:38:42 +0000 (17:38 +0000)] 
Added rule "bool" for boolean switches.

27 years agoName cleanups as suggested by Pavel:
Martin Mares [Sun, 6 Dec 1998 11:59:18 +0000 (11:59 +0000)] 
Name cleanups as suggested by Pavel:

- cfg_strcpy() -> cfg_strdup()
- mempool -> linpool, mp_* -> lp_*  [to avoid confusion with memblock, mb_*]

Anyway, it might be better to stop ranting about names and do some *real* work.

27 years agoRip now has configurable per-interface metric (please rewiev), and few
Pavel Machek [Fri, 4 Dec 1998 11:45:51 +0000 (11:45 +0000)] 
Rip now has configurable per-interface metric (please rewiev), and few
more configurable parameters. To do that, union was added into iface_patt.

27 years agoInfinity is now configurable ammount.
Pavel Machek [Tue, 1 Dec 1998 16:17:10 +0000 (16:17 +0000)] 
Infinity is now configurable ammount.

27 years agoAdded configuration of the device internal protocol. This is primarily
Martin Mares [Sun, 29 Nov 1998 22:03:58 +0000 (22:03 +0000)] 
Added configuration of the device internal protocol. This is primarily
intended to serve as an example of interface pattern list use. As a side
effect, you can disable generating of device routes by disabling
this protocol.

27 years agoHandle disabled protocol instances.
Martin Mares [Sun, 29 Nov 1998 22:01:33 +0000 (22:01 +0000)] 
Handle disabled protocol instances.

27 years agoAdded functions for manipulating interface name pattern lists:
Martin Mares [Sun, 29 Nov 1998 22:01:03 +0000 (22:01 +0000)] 
Added functions for manipulating interface name pattern lists:

   o  iface_patt_match(list, iface) -- match interface against list
   o  iface_patts_equal(a, b, c) -- compare whether two pattern lists are
      equal or not. c(x,y) is called for comparison of protocol-dependent
      data.

27 years agoCreated new functions for allocating configuration data:
Martin Mares [Sun, 29 Nov 1998 21:59:37 +0000 (21:59 +0000)] 
Created new functions for allocating configuration data:

   o  cfg_alloc(size) -- generic memory allocation
   o  cfg_allocu(size) -- unaligned memory allocation
   o  cfg_allocz(size) -- zeroed memory allocation
   o  cfg_strcpy(str) -- allocate a copy of a string

Also fixed a bug in lexing of string literals.

27 years ago`wc -l TODO` decreased.
Martin Mares [Sun, 29 Nov 1998 14:51:47 +0000 (14:51 +0000)] 
`wc -l TODO` decreased.

27 years agoAdded function for shell-like pattern matching. Will be used for
Martin Mares [Sun, 29 Nov 1998 14:47:24 +0000 (14:47 +0000)] 
Added function for shell-like pattern matching. Will be used for
matching interface names in protocol-to-iface bindings.

27 years agoAllow setting debug value and `disabled' flag in protocol definition.
Martin Mares [Sun, 29 Nov 1998 14:40:39 +0000 (14:40 +0000)] 
Allow setting debug value and `disabled' flag in protocol definition.

27 years agoRenamed `DEBUG' symbol to `DEBUGGING' to prevent collisions with token
Martin Mares [Sun, 29 Nov 1998 14:38:34 +0000 (14:38 +0000)] 
Renamed `DEBUG' symbol to `DEBUGGING' to prevent collisions with token
names and include files.

27 years agoOops, forgot to remove a debugging kludge.
Martin Mares [Fri, 27 Nov 1998 21:34:03 +0000 (21:34 +0000)] 
Oops, forgot to remove a debugging kludge.

27 years agoTrivial 15-line bison excercise: Implemented expressions including
Martin Mares [Fri, 27 Nov 1998 21:32:45 +0000 (21:32 +0000)] 
Trivial 15-line bison excercise: Implemented expressions including
user-defined numeric symbols. Whenever possible, use `expr' instead
of `NUM' to get full express ion power :-)

27 years agoFirst attempt at protocol configuration (now done only for RIP).
Martin Mares [Fri, 27 Nov 1998 21:09:57 +0000 (21:09 +0000)] 
First attempt at protocol configuration (now done only for RIP).

27 years agoFixed few misspellings and exported instance init as rip_init_instance().
Martin Mares [Fri, 27 Nov 1998 21:08:37 +0000 (21:08 +0000)] 
Fixed few misspellings and exported instance init as rip_init_instance().

27 years agoAdded generator of default names.
Martin Mares [Fri, 27 Nov 1998 21:07:02 +0000 (21:07 +0000)] 
Added generator of default names.

27 years agoExperimental config file.
Martin Mares [Fri, 27 Nov 1998 19:39:16 +0000 (19:39 +0000)] 
Experimental config file.

27 years agoDummy grammar for RIP configuration. Now empty, but must be here since
Martin Mares [Fri, 27 Nov 1998 19:38:30 +0000 (19:38 +0000)] 
Dummy grammar for RIP configuration. Now empty, but must be here since
it's referenced in the makefiles.

27 years agoParser fragment for the core. Now handles only router ID setting.
Martin Mares [Fri, 27 Nov 1998 19:37:57 +0000 (19:37 +0000)] 
Parser fragment for the core. Now handles only router ID setting.

27 years agoCompile and use the new configuration code by default.
Martin Mares [Fri, 27 Nov 1998 19:37:07 +0000 (19:37 +0000)] 
Compile and use the new configuration code by default.

27 years agoBase of the parser.
Martin Mares [Fri, 27 Nov 1998 19:36:06 +0000 (19:36 +0000)] 
Base of the parser.

27 years agoLexical analyser.
Martin Mares [Fri, 27 Nov 1998 19:35:50 +0000 (19:35 +0000)] 
Lexical analyser.

27 years agoReplaced nest/confile.h by conf/conf.h, added a lot of new definitions.
Martin Mares [Fri, 27 Nov 1998 19:35:10 +0000 (19:35 +0000)] 
Replaced nest/confile.h by conf/conf.h, added a lot of new definitions.

27 years agoThis script takes configuration fragments and generates full Bison grammar
Martin Mares [Fri, 27 Nov 1998 19:33:53 +0000 (19:33 +0000)] 
This script takes configuration fragments and generates full Bison grammar
from them.

27 years agoThis script takes configuration fragments and extracts keyword list
Martin Mares [Fri, 27 Nov 1998 19:33:26 +0000 (19:33 +0000)] 
This script takes configuration fragments and extracts keyword list
from them.

27 years agoNow merges configuration fragments (*.Y) as well.
Martin Mares [Fri, 27 Nov 1998 19:31:41 +0000 (19:31 +0000)] 
Now merges configuration fragments (*.Y) as well.

27 years agoImplemented ip_pton()
Martin Mares [Fri, 27 Nov 1998 19:29:27 +0000 (19:29 +0000)] 
Implemented ip_pton()

27 years agoRemoved prototype of rp_free() since this function has never existed.
Martin Mares [Fri, 27 Nov 1998 19:29:00 +0000 (19:29 +0000)] 
Removed prototype of rp_free() since this function has never existed.

27 years agoAdded path to config file.
Martin Mares [Fri, 27 Nov 1998 19:28:29 +0000 (19:28 +0000)] 
Added path to config file.

27 years agoKilled bug in processing of 'h' prefix. Patch taken from linux-2.1.129.
Martin Mares [Sat, 21 Nov 1998 10:25:34 +0000 (10:25 +0000)] 
Killed bug in processing of 'h' prefix. Patch taken from linux-2.1.129.

27 years agoComplain loudly if the logging buffer would overflow.
Martin Mares [Mon, 16 Nov 1998 21:41:21 +0000 (21:41 +0000)] 
Complain loudly if the logging buffer would overflow.

27 years agoImplemented snprintf and similar functions. It took a lot of thinking,
Martin Mares [Mon, 16 Nov 1998 21:40:35 +0000 (21:40 +0000)] 
Implemented snprintf and similar functions. It took a lot of thinking,
but the modifications were relatively simple and straightforward.

27 years agoRIP now includes notion of interface, and is correctly talking to
Pavel Machek [Mon, 26 Oct 1998 15:35:19 +0000 (15:35 +0000)] 
RIP now includes notion of interface, and is correctly talking to
itself on second host. Split horizont is broken.

27 years agoPrevious fix was wrong.
Martin Mares [Mon, 26 Oct 1998 15:24:32 +0000 (15:24 +0000)] 
Previous fix was wrong.

27 years agorte_update: Doesn't loop forever when multiple routes point to the same
Martin Mares [Mon, 26 Oct 1998 15:01:04 +0000 (15:01 +0000)] 
rte_update: Doesn't loop forever when multiple routes point to the same
destination.

27 years agoRIP _NOW_ actually talks to itself (workaround core bug: send data
Pavel Machek [Tue, 20 Oct 1998 16:45:53 +0000 (16:45 +0000)] 
RIP _NOW_ actually talks to itself (workaround core bug: send data
from other port than we receive at), few FIXME's added.

27 years agoLearn static device routes from the kernel (temporary until we can make
Martin Mares [Tue, 20 Oct 1998 16:39:04 +0000 (16:39 +0000)] 
Learn static device routes from the kernel (temporary until we can make
such things configurable).

27 years agoRIP now actually talks to itself.
Pavel Machek [Tue, 20 Oct 1998 16:12:43 +0000 (16:12 +0000)] 
RIP now actually talks to itself.

27 years agoBeware the NULL route, my son... The bugs that bite, the BIRDs that crash :-)
Martin Mares [Tue, 20 Oct 1998 15:47:02 +0000 (15:47 +0000)] 
Beware the NULL route, my son... The bugs that bite, the BIRDs that crash :-)