diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-12 21:50:35 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-12 21:50:35 +0100 |
commit | 6a9f28b0b9254ba21c36126d6f10388815840001 (patch) | |
tree | b157e8a19add7bbb87875599c78d352d285d87b1 /nest/protocol.h | |
parent | b0a47440e33e7a270205130b01d59faadb6b6726 (diff) | |
download | bird-6a9f28b0b9254ba21c36126d6f10388815840001.tar bird-6a9f28b0b9254ba21c36126d6f10388815840001.zip |
Added tracing of interface events.
Diffstat (limited to 'nest/protocol.h')
-rw-r--r-- | nest/protocol.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nest/protocol.h b/nest/protocol.h index f4ce384..9dd32fc 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -240,9 +240,10 @@ void proto_notify_state(struct proto *p, unsigned state); #define D_STATES 1 /* [core] State transitions */ #define D_ROUTES 2 /* [core] Routes passed by the filters */ -#define D_FILTERS 4 /* [core] Filtering of routes */ -#define D_EVENTS 8 /* Protocol events */ -#define D_PACKETS 16 /* Packets sent/received */ +#define D_FILTERS 4 /* [core] Routes rejected by the filters */ +#define D_IFACES 8 /* [core] Interface events */ +#define D_EVENTS 16 /* Protocol events */ +#define D_PACKETS 32 /* Packets sent/received */ /* * Known unique protocol instances as referenced by config routines |