From 0432c0173bb4d234e8ba8e4afea0a8e708e119d8 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 18 Oct 1998 11:53:21 +0000 Subject: Split protocol init to building of protocol list and real protocol init. Added kernel route table syncer skeleton. --- nest/proto.c | 11 ++++++++--- nest/protocol.h | 1 + nest/route.h | 1 + 3 files changed, 10 insertions(+), 3 deletions(-) (limited to 'nest') diff --git a/nest/proto.c b/nest/proto.c index 6db5a0e..6c0843d 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -106,15 +106,20 @@ protos_dump_all(void) debug(" inactive %s\n", p->name); } +void +protos_build(void) +{ + init_list(&protocol_list); + add_tail(&protocol_list, &proto_device.n); + add_tail(&protocol_list, &proto_rip.n); +} + void protos_init(void) { struct protocol *p; debug("Initializing protocols\n"); - init_list(&protocol_list); - add_tail(&protocol_list, &proto_device.n); - add_tail(&protocol_list, &proto_rip.n); /* HACK: We should really read this from config */ WALK_LIST(p, protocol_list) p->init(p); } diff --git a/nest/protocol.h b/nest/protocol.h index 6059f7c..9a0ea98 100644 --- a/nest/protocol.h +++ b/nest/protocol.h @@ -32,6 +32,7 @@ struct protocol { void (*postconfig)(struct protocol *); /* After configuring */ }; +void protos_build(void); void protos_init(void); void protos_preconfig(void); void protos_postconfig(void); diff --git a/nest/route.h b/nest/route.h index e50de07..78f9446 100644 --- a/nest/route.h +++ b/nest/route.h @@ -248,6 +248,7 @@ void rta_dump_all(void); #define DEF_PREF_BGP 100 /* BGP */ #define DEF_PREF_OSPF_EXTERNAL 80 /* OSPF external routes */ #define DEF_PREF_RIP_EXTERNAL 70 /* RIP external routes */ +#define DEF_PREF_UKR 50 /* Unidentified Kernel Route */ #define DEF_PREF_SINK 10 /* Sink route */ #endif -- cgit v1.2.3