From 2326b001d6f28e69b88c3c19795d8c0999f07db1 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 20 May 1998 11:54:33 +0000 Subject: Added routing table and routing attribute code. --- nest/proto.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 nest/proto.c (limited to 'nest/proto.c') 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 + * + * 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); +} -- cgit v1.2.3