diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-04-25 15:50:57 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2018-04-25 15:54:53 +0200 |
commit | 4727d1db9d83a8f1025481cbcc06a7e4c8ec9f33 (patch) | |
tree | 8b0778f352da5135c6dc75d0389e0270202537de /proto/ospf/neighbor.c | |
parent | f3a8cf050e6181e158dcde2fe885d7bf220eedc3 (diff) |
OSPF: Support of authentication trailer for OSPFv3
Implement RFC 7166, crypthographic authentication for OSPFv3
analogous to authentication used for OSPFv2.
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r-- | proto/ospf/neighbor.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index f2d3505e..7ce682b0 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -84,8 +84,6 @@ ospf_neighbor_new(struct ospf_iface *ifa) n->pool = pool; n->ifa = ifa; add_tail(&ifa->neigh_list, NODE n); - n->adj = 0; - n->csn = 0; n->state = NEIGHBOR_DOWN; init_lists(p, n); |