diff options
| author | Abhinay Ramesh <rabhinay@vmware.com> | 2021-05-30 16:33:41 +0000 | 
|---|---|---|
| committer | Abhinay Ramesh <rabhinay@vmware.com> | 2022-02-09 01:57:08 +0000 | 
| commit | 6cb85350df7fdcea106947fdda42a91ddebcdd5e (patch) | |
| tree | 9b995fe10714480472ba3c4b842ce32d9f6e1fc2 /ospf6d/ospf6_neighbor.h | |
| parent | b592ec5ad037723887f6ba287b202bc33a9fe8b2 (diff) | |
ospf6d: Stitching the auth trailer code with rest of ospf6.
Problem Statement:
==================
RFC 7166 support for OSPF6 in FRR code.
RCA:
====
This feature is newly supported in FRR
Fix:
====
Core functionality implemented in previous commit is
stitched with rest of ospf6 code as part of this commit.
Risk:
=====
Low risk
Tests Executed:
===============
Have executed the combination of commands.
Signed-off-by: Abhinay Ramesh <rabhinay@vmware.com>
Diffstat (limited to 'ospf6d/ospf6_neighbor.h')
| -rw-r--r-- | ospf6d/ospf6_neighbor.h | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/ospf6d/ospf6_neighbor.h b/ospf6d/ospf6_neighbor.h index de59a1ccf5..2dd640099c 100644 --- a/ospf6d/ospf6_neighbor.h +++ b/ospf6d/ospf6_neighbor.h @@ -144,6 +144,14 @@ struct ospf6_neighbor {  	/* ospf6 graceful restart HELPER info */  	struct ospf6_helper_info gr_helper_info; + +	/* seqnum_h/l is used to compare sequence +	 * number in received packet Auth header +	 */ +	uint32_t seqnum_h[OSPF6_MESSAGE_TYPE_MAX]; +	uint32_t seqnum_l[OSPF6_MESSAGE_TYPE_MAX]; +	bool auth_present; +	bool lls_present;  };  /* Neighbor state */  | 
