mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 17:51:53 +00:00
Better inicialisation.
This commit is contained in:
parent
0dc4431cde
commit
04c3a83c60
@ -12,7 +12,7 @@ static int
|
|||||||
ospf_start(struct proto *p)
|
ospf_start(struct proto *p)
|
||||||
{
|
{
|
||||||
struct proto_ospf *po=(struct proto_ospf *)p;
|
struct proto_ospf *po=(struct proto_ospf *)p;
|
||||||
DBG("%s: Start\n",p->name);
|
debug("%s: Start\n",p->name);
|
||||||
|
|
||||||
fib_init(&po->efib,p->pool,sizeof(struct extfib),16,init_efib);
|
fib_init(&po->efib,p->pool,sizeof(struct extfib),16,init_efib);
|
||||||
init_list(&(po->iface_list));
|
init_list(&(po->iface_list));
|
||||||
@ -66,6 +66,7 @@ ospf_init(struct proto_config *c)
|
|||||||
p->neigh_notify = NULL;
|
p->neigh_notify = NULL;
|
||||||
p->import_control = ospf_import_control;
|
p->import_control = ospf_import_control;
|
||||||
p->rt_notify = ospf_rt_notify;
|
p->rt_notify = ospf_rt_notify;
|
||||||
|
p->if_notify = ospf_if_notify;
|
||||||
p->rte_better=ospf_rte_better;
|
p->rte_better=ospf_rte_better;
|
||||||
p->rte_same=ospf_rte_same;
|
p->rte_same=ospf_rte_same;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user