diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-10-01 15:55:23 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-10-01 15:55:23 +0200 |
commit | 961671c0f51693aff34bf3adf5319b35275a86d3 (patch) | |
tree | 1eae258f41d0dc67abdc45da6bc16f253a4f23dc /proto/ospf | |
parent | 0db7a1d69c80b1089f10a268ceacb059db41ced8 (diff) |
Lib: Add and use ev_new_init()
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/ospf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 327ad0a4..4faad360 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -256,9 +256,7 @@ ospf_start(struct proto *P) p->gr = ospf_top_new(p, P->pool); s_init_list(&(p->lsal)); - p->flood_event = ev_new(P->pool); - p->flood_event->hook = ospf_flood_event; - p->flood_event->data = p; + p->flood_event = ev_new_init(P->pool, ospf_flood_event, p); p->log_pkt_tbf = (struct tbf){ .rate = 1, .burst = 5 }; p->log_lsa_tbf = (struct tbf){ .rate = 4, .burst = 20 }; |