From 6d2b32114feadb283cb988daa7ed80142aa8c4d1 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Thu, 30 Mar 2000 00:18:59 +0000 Subject: LSreq initial work. --- proto/ospf/hello.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'proto/ospf/hello.c') diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c index e025ae4..77d114c 100644 --- a/proto/ospf/hello.c +++ b/proto/ospf/hello.c @@ -112,6 +112,12 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p, n->rxmt_timer->hook=rxmt_timer_hook; n->rxmt_timer->recurrent=ifa->rxmtint; DBG("%s: Installing rxmt timer.\n", p->name); + n->lsrr_timer=tm_new(p->pool); + n->lsrr_timer->data=n; + n->lsrr_timer->randomize=0; + n->lsrr_timer->hook=lsrr_timer_hook; + n->lsrr_timer->recurrent=ifa->rxmtint; + DBG("%s: Installing lsrr timer.\n", p->name); } ospf_neigh_sm(n, INM_HELLOREC); -- cgit v1.2.3