summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2000-02-18Completion works. Unfortunately, we have to access a couple of internalMartin Mares
symbols of libreadline :-(
2000-02-17Client: Online help works (Cisco style: just press `?' at the end of a line).Martin Mares
2000-02-15First usable version of the client. No command completion and similar niftyMartin Mares
features yet, but it works.
2000-02-14Don't make dependencies in client directory if the client is notMartin Mares
configured in.
2000-02-08Hash table structure redesigned.Ondrej Filip
2000-02-08Other LS struct added.Ondrej Filip
2000-02-08LSA type changed from u16 to u8.Ondrej Filip
2000-02-08Malloc() changed to cfg_alloc().Ondrej Filip
2000-01-31filter_same() implemented. Don't bet on it, yet.Pavel Machek
2000-01-26Updated docs about filters, and added fixme.Pavel Machek
2000-01-26Do not send empty packets in rip.Pavel Machek
2000-01-26Output made prettier.Pavel Machek
2000-01-20Configure, link and use the readline library.Martin Mares
2000-01-19Put client on a stony ground. The whole client is going to be system-specificMartin Mares
(the current version UNIX-specific) anyway, so it's useless to try splitting it to sysdep and generic part. Instead of this, configure script decides (based on system type and user's wish) what (if any) client should be built and what autoconfiguration it requires. Also, the client provides its own die/bug/... functions.
2000-01-19Generate a list of all commands and their help texts for the client to use.Martin Mares
2000-01-19Split off general commands to cmds.c.Martin Mares
Added `show symbols' command which dumps whole symbol table together with symbol types etc.
2000-01-19Killed a couple of bugs in the neighbor cache.Martin Mares
Manual disable/enable/restart/shutdown/reconfiguration of protocols no longer hangs on loops in neighbor lists :)
2000-01-18Killed protocol->priority. Protocol startup should be clean and hack-free now.Martin Mares
It seems everything still works (except for disable/enable/restart which hangs sometimes, but it's another story).
2000-01-18protocol->startup_counter no longer exists.Martin Mares
2000-01-18Kernel route syncer now supports dynamic reconfiguration. Also it doesn'tMartin Mares
depend on the startup counter hack now and uses a zero-time timer instead to make itself scheduled after normal protocol startup.
2000-01-17Removed point-to-point tunnel hack as it breaks ordinary PtP interfaces.Martin Mares
I'll find a better solution soon.
2000-01-17Static protocol supports full dynamic reconfiguration.Martin Mares
2000-01-17Moved initlialization of protocol lists to global init. Argh.Martin Mares
2000-01-17Separated `official protocol names' used in status dumps from name templatesMartin Mares
used for automatic generation of instance names. protocol->name is the official name protocol->template is the name template (usually "name%d"), should be all lowercase. Updated all protocols to define the templates, checked that their configuration grammar includes proto_name which generates the name and interns it in the symbol table.
2000-01-17Reconfiguration for device protocol.Martin Mares
2000-01-17Pipe protocol supports reconfiguration.Martin Mares
2000-01-17Device protocol supports reconfiguration.Martin Mares
2000-01-17Don't forget changing proto->name to point to name in new configurationMartin Mares
(to avoid the name being freed with the old config). Also remember to add proto_pipe to protocol_list.
2000-01-17When a quoted string is encountered, don't forget to copy it to theMartin Mares
config pool before passing it to the parser.
2000-01-17Wording changes.Martin Mares
2000-01-17Reworked proto lists -- each proto is now in two lists: the global oneMartin Mares
(proto_list) and per-type one (original lists). A lot of things simplified. Implemented `disable', `enable' and `restart' CLI commands.
2000-01-16Added filter_same() for comparision of two filters.Martin Mares
Pavel, please implement this as soon as possible.
2000-01-16Converted shutdown to a kind of reconfiguration, it's no more handledMartin Mares
as a exception in protocol state machines. Introduced a `shutdown' CLI command. Killed few reconfiguration bugs.
2000-01-16No more problems when events get scheduled during event processing.Martin Mares
2000-01-16First attempt on dynamic reconfiguration. There are still lots of bugsMartin Mares
and problems to solve, but the hardest part works.
2000-01-16Don't forget to set proto->min_scope = SCOPE_HOST.Martin Mares
2000-01-05Preparing for building LS databaze. Huh, why is it so complicated? :-(Ondrej Filip
Adding definition of some constants.
1999-12-20Few more entries for bird documentationPavel Machek
1999-12-18This is first version of documentation. Be sure to take a close lookPavel Machek
at it, and it would be very nice if you wrote at least introductions to your chapters...
1999-12-18Added fixme.Pavel Machek
1999-12-16Minor cleanups.Martin Mares
1999-12-16Handle cases when SIOCGIFINDEX is defined, but doesn't work (new glibcMartin Mares
with 2.0 kernels).
1999-12-16Added missing semicolon.Martin Mares
rip.h compiles in IPv6 mode, rip.c still doesn't.
1999-12-16Better order of includes.Martin Mares
set_inaddr() moved to sysio.h.
1999-12-16ipv6_compare() accepts non-lvalue arguments as well. This makes filtersMartin Mares
compile with IPv6.
1999-12-16Tried to clean up multicast handling. Now we don't try to guessMartin Mares
multicast abilities depending on definedness of symbols and use hard-wired system-dependent configuration defines instead. Please test whereever you can.
1999-12-16Avoid touching F_MODIFY, it no longer exists.Martin Mares
1999-12-16TODO entries and FIXME's.Martin Mares
1999-12-16Kicked off F_MODIFY (not generated nor used)Martin Mares
1999-12-09Added universal locking mechanism which will solve problemsMartin Mares
with protocols wanting to use the same port on the same interface during reconfiguration time. How to use locks: In the if_notify hook, just order locks for the interfaces you want to work with and do the real socket opening after the lock hook function gets called. When you stop using the socket, close it and rfree() the lock. Please update your protocols to use the new locking mechanism.