1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/*
* BIRD -- Protocols
*
* (c) 1998 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#define LOCAL_DEBUG
#include <string.h>
#include "nest/bird.h"
#include "nest/protocol.h"
#include "lib/resource.h"
#include "lib/lists.h"
#include "nest/confile.h"
list protocol_list;
list proto_list;
void *
proto_new(struct protocol *pr, unsigned size)
{
struct proto *p = mp_alloc(cfg_mem, size);
debug("proto_new(%s)\n", pr->name);
bzero(p, sizeof(*p));
p->proto = pr;
p->name = pr->name;
p->debug = pr->debug;
p->pool = rp_new(&root_pool, pr->name);
add_tail(&proto_list, &p->n);
return p;
}
void
protos_preconfig(void)
{
struct protocol *p;
init_list(&proto_list);
debug("Protocol preconfig\n");
WALK_LIST(p, protocol_list)
{
debug("...%s\n", p->name);
p->preconfig(p);
}
}
void
protos_postconfig(void)
{
struct protocol *p;
debug("Protocol postconfig\n");
WALK_LIST(p, protocol_list)
{
debug("...%s\n", p->name);
p->postconfig(p);
}
}
void
protos_start(void)
{
struct proto *p;
debug("Protocol start\n");
WALK_LIST(p, proto_list)
{
debug("...%s\n", p->name);
if (p->start)
p->start(p);
}
}
void
protos_init(void)
{
struct protocol *p;
debug("Initializing protocols\n");
init_list(&protocol_list);
add_tail(&protocol_list, &proto_device.n);
WALK_LIST(p, protocol_list)
p->init(p);
}
|