diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-06-05 15:41:44 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-06-05 15:41:44 +0000 |
commit | 8b79c4ccd597b90222f57eb3dfadeb24f39db7bd (patch) | |
tree | d811a8f78ad7b39352446ea5bf03f14f53d92fdf /proto/rip/rip.c | |
parent | 98da26a0a0ee9dd8f7030dcaf6f733adf8b8ad2c (diff) |
Add safety check.
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 698f0e28..643fc432 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -53,6 +53,7 @@ #include "lib/string.h" #include "rip.h" +#include <assert.h> #define P ((struct rip_proto *) p) #define P_CF ((struct rip_proto_config *)p->cf) @@ -538,6 +539,11 @@ rip_start(struct proto *p) struct rip_interface *rif; DBG( "RIP: starting instance...\n" ); + assert( sizeof(struct rip_packet_heading) == 4); + assert( sizeof(struct rip_block) == 20); + assert( sizeof(struct rip_block_auth) == 20); + + P->magic = RIP_MAGIC; fib_init( &P->rtable, p->pool, sizeof( struct rip_entry ), 0, NULL ); init_list( &P->connections ); |