0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-19 01:28:44 +00:00
The BIRD project aims to develop a fully functional dynamic IP routing daemon. https://bird.network.cz
Go to file
Martin Mares 98e87c8628 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.
1998-12-20 14:24:35 +00:00
conf Added new rule for prefix length / netmask. 1998-12-06 23:10:45 +00:00
doc Added banner presented to KSVI. 1998-03-20 18:30:55 +00:00
lib Finer grained logging levels: 1998-12-20 14:24:35 +00:00
misc Variance estimation fixed. 1998-12-19 21:53:28 +00:00
nest When printing a routing table, fib_check() it. 1998-12-20 14:01:37 +00:00
proto debug() -> DBG() in rip. 1998-12-09 20:08:57 +00:00
sysdep Finer grained logging levels: 1998-12-20 14:24:35 +00:00
tools Now merges configuration fragments (*.Y) as well. 1998-11-27 19:31:41 +00:00
bird.conf Hopefully finished kernel syncer (krt) rewrite: 1998-12-08 18:37:58 +00:00
Makefile Added skeleton of static route protocol. 1998-12-06 18:21:23 +00:00
Rules Added routing table and routing attribute code. 1998-05-20 11:54:33 +00:00
TODO Finer grained logging levels: 1998-12-20 14:24:35 +00:00