summaryrefslogtreecommitdiffstats
path: root/nest/proto.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-19 23:09:07 +0100
committerMartin Mares <mj@ucw.cz>2000-03-19 23:09:07 +0100
commit2638249d34cc7f600fba25edd29538c00a3aca31 (patch)
tree206aeb113f3822d08385cae49e9b5e1bbe6796fb /nest/proto.c
parent349e21bb0bb7584fb18c19859d876893c3130947 (diff)
downloadbird-2638249d34cc7f600fba25edd29538c00a3aca31.tar
bird-2638249d34cc7f600fba25edd29538c00a3aca31.zip
Bare skeleton of the BGP.
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c
index 937cda2..95988ce 100644
--- a/nest/proto.c
+++ b/nest/proto.c
@@ -367,6 +367,9 @@ protos_build(void)
#ifdef CONFIG_PIPE
add_tail(&protocol_list, &proto_pipe.n);
#endif
+#ifdef CONFIG_BGP
+ add_tail(&protocol_list, &proto_bgp.n);
+#endif
proto_pool = rp_new(&root_pool, "Protocols");
proto_flush_event = ev_new(proto_pool);
proto_flush_event->hook = proto_flush_all;