summaryrefslogtreecommitdiffstats
path: root/nest/proto.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-05-20 13:54:33 +0200
committerMartin Mares <mj@ucw.cz>1998-05-20 13:54:33 +0200
commit2326b001d6f28e69b88c3c19795d8c0999f07db1 (patch)
treeec18cb858431ebd1953136b3e8c3de7d84c501ae /nest/proto.c
parent3994080eb1a86f085498bee1f36cbdb52b30191d (diff)
downloadbird-2326b001d6f28e69b88c3c19795d8c0999f07db1.tar
bird-2326b001d6f28e69b88c3c19795d8c0999f07db1.zip
Added routing table and routing attribute code.
Diffstat (limited to 'nest/proto.c')
-rw-r--r--nest/proto.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/nest/proto.c b/nest/proto.c
new file mode 100644
index 0000000..ff75d94
--- /dev/null
+++ b/nest/proto.c
@@ -0,0 +1,20 @@
+/*
+ * BIRD -- Protocols
+ *
+ * (c) 1998 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#include "nest/bird.h"
+#include "nest/protocol.h"
+#include "lib/resource.h"
+#include "lib/lists.h"
+
+list proto_list;
+
+void
+proto_init(void)
+{
+ init_list(&proto_list);
+}