]> git.ipfire.org Git - thirdparty/bird.git/blob - nest/proto.c
Added routing table and routing attribute code.
[thirdparty/bird.git] / nest / proto.c
1 /*
2 * BIRD -- Protocols
3 *
4 * (c) 1998 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #include "nest/bird.h"
10 #include "nest/protocol.h"
11 #include "lib/resource.h"
12 #include "lib/lists.h"
13
14 list proto_list;
15
16 void
17 proto_init(void)
18 {
19 init_list(&proto_list);
20 }