Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-01-17 | Separated `official protocol names' used in status dumps from name templates | Martin 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-17 | Reconfiguration for device protocol. | Martin Mares | |
2000-01-17 | Pipe protocol supports reconfiguration. | Martin Mares | |
2000-01-17 | Device protocol supports reconfiguration. | Martin Mares | |
2000-01-17 | Don't forget changing proto->name to point to name in new configuration | Martin Mares | |
(to avoid the name being freed with the old config). Also remember to add proto_pipe to protocol_list. | |||
2000-01-17 | When a quoted string is encountered, don't forget to copy it to the | Martin Mares | |
config pool before passing it to the parser. | |||
2000-01-17 | Wording changes. | Martin Mares | |
2000-01-17 | Reworked proto lists -- each proto is now in two lists: the global one | Martin Mares | |
(proto_list) and per-type one (original lists). A lot of things simplified. Implemented `disable', `enable' and `restart' CLI commands. | |||
2000-01-16 | Added filter_same() for comparision of two filters. | Martin Mares | |
Pavel, please implement this as soon as possible. | |||
2000-01-16 | Converted shutdown to a kind of reconfiguration, it's no more handled | Martin Mares | |
as a exception in protocol state machines. Introduced a `shutdown' CLI command. Killed few reconfiguration bugs. | |||
2000-01-16 | No more problems when events get scheduled during event processing. | Martin Mares | |
2000-01-16 | First attempt on dynamic reconfiguration. There are still lots of bugs | Martin Mares | |
and problems to solve, but the hardest part works. | |||
2000-01-16 | Don't forget to set proto->min_scope = SCOPE_HOST. | Martin Mares | |
2000-01-05 | Preparing for building LS databaze. Huh, why is it so complicated? :-( | Ondrej Filip | |
Adding definition of some constants. | |||
1999-12-20 | Few more entries for bird documentation | Pavel Machek | |
1999-12-18 | This is first version of documentation. Be sure to take a close look | Pavel Machek | |
at it, and it would be very nice if you wrote at least introductions to your chapters... | |||
1999-12-18 | Added fixme. | Pavel Machek | |
1999-12-16 | Minor cleanups. | Martin Mares | |
1999-12-16 | Handle cases when SIOCGIFINDEX is defined, but doesn't work (new glibc | Martin Mares | |
with 2.0 kernels). | |||
1999-12-16 | Added missing semicolon. | Martin Mares | |
rip.h compiles in IPv6 mode, rip.c still doesn't. | |||
1999-12-16 | Better order of includes. | Martin Mares | |
set_inaddr() moved to sysio.h. | |||
1999-12-16 | ipv6_compare() accepts non-lvalue arguments as well. This makes filters | Martin Mares | |
compile with IPv6. | |||
1999-12-16 | Tried to clean up multicast handling. Now we don't try to guess | Martin Mares | |
multicast abilities depending on definedness of symbols and use hard-wired system-dependent configuration defines instead. Please test whereever you can. | |||
1999-12-16 | Avoid touching F_MODIFY, it no longer exists. | Martin Mares | |
1999-12-16 | TODO entries and FIXME's. | Martin Mares | |
1999-12-16 | Kicked off F_MODIFY (not generated nor used) | Martin Mares | |
1999-12-09 | Added universal locking mechanism which will solve problems | Martin 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. | |||
1999-12-08 | Temporary work-arounds for multicast problems. Needs further investigation. | Martin Mares | |
1999-12-08 | Except for special protocols (nowadays only the kernel syncer), don't | Martin Mares | |
export host and link scope routes. | |||
1999-12-08 | Added hooks for show route. | Pavel Machek | |
Fixed passing metrics around routing tables. | |||
1999-12-08 | - Path to control socket is selectable via command-line option. | Martin Mares | |
- die() when control socket open failed. | |||
1999-12-08 | Fix timing and fix endianity in metrics. | Pavel Machek | |
1999-12-08 | Disallow rta.net syntax. | Pavel Machek | |
1999-12-08 | Put rip options into config file. | Pavel Machek | |
1999-12-08 | Make bird.conf that does not crash machine when you run bird as root. | Pavel Machek | |
1999-12-08 | Make rta. syntax optional. | Pavel Machek | |
1999-12-08 | Separated bird.conf and bird.conf for testing filters. | Pavel Machek | |
1999-12-06 | Allow logging to stderr as well. | Martin Mares | |
1999-12-06 | Added type `g' for void (general) pointer. | Martin Mares | |
1999-12-06 | Logging is now configurable. You can define multiple log outputs (to both | Martin Mares | |
files and syslog) and assign lists of message categories to each of them. | |||
1999-12-06 | Moved initialization of protocol list to proto.c. | Martin Mares | |
Added sysdep configuration hooks. | |||
1999-12-06 | Added tracked_fopen() which is a fopen registered in resource database. | Martin Mares | |
Will be used for log files. | |||
1999-12-06 | Implemented echoing of log messages to CLI connections. Just try `echo all'. | Martin Mares | |
1999-12-05 | Don't forget to send an OK reply after dumping debug information. | Martin Mares | |
1999-12-05 | Added DEBUG commands. | Martin Mares | |
Removed CLI tests, real commands now serve as much better examples. | |||
1999-12-03 | Implemented `show static'. It's a relatively good example of how to write | Martin Mares | |
show commands for other protocols. | |||
1999-12-03 | Added proto_get_named() to be used in CLI commands to get protocol instance | Martin Mares | |
of a given protocol with optionally given name. See `show static' for an example. | |||
1999-12-03 | Renamed SHOW PROTOCOLS VERBOSE to SHOW PROTOCOLS ALL to be consistent | Martin Mares | |
with the other commands. | |||
1999-12-02 | Implemented `show route where <condition>' command. | Martin Mares | |
Pavel, please check my addition to filter/config.Y. | |||
1999-12-02 | I tried to turn on the YYERROR_VERBOSE switch, but bison is buggy as hell, | Martin Mares | |
so it doesn't even compile. Turned it again off and added a comment on it. |