diff options
| author | rgirada <rgirada@vmware.com> | 2020-08-21 04:46:56 -0700 | 
|---|---|---|
| committer | rgirada <rgirada@vmware.com> | 2020-09-21 23:59:59 -0700 | 
| commit | f96f27136690ab730f2ee79f9f547bb21811ba3b (patch) | |
| tree | 0c9c28dc9755fae4130ded79686224d188ca8c47 /ospfd/ospf_neighbor.h | |
| parent | cc1a92d806312ecff0cf9fc2857c9d50eee3be8a (diff) | |
ospfd: ospf GR helper data structure  definitions.
Description:
	Graceful restart helper support specific data structure
	changes.
Signed-off-by: Rajesh Girada <rgirada@vmware.com>
Diffstat (limited to 'ospfd/ospf_neighbor.h')
| -rw-r--r-- | ospfd/ospf_neighbor.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/ospfd/ospf_neighbor.h b/ospfd/ospf_neighbor.h index 91dfc7a276..758693e289 100644 --- a/ospfd/ospf_neighbor.h +++ b/ospfd/ospf_neighbor.h @@ -22,6 +22,7 @@  #ifndef _ZEBRA_OSPF_NEIGHBOR_H  #define _ZEBRA_OSPF_NEIGHBOR_H +#include <ospfd/ospf_gr_helper.h>  #include <ospfd/ospf_packet.h>  /* Neighbor Data Structure */ @@ -88,6 +89,9 @@ struct ospf_neighbor {  	/* BFD information */  	void *bfd_info; + +	/* ospf graceful restart HELPER info */ +	struct ospf_helper_info gr_helper_info;  };  /* Macros. */ @@ -113,5 +117,4 @@ extern struct ospf_neighbor *ospf_nbr_lookup_by_addr(struct route_table *,  extern struct ospf_neighbor *ospf_nbr_lookup_by_routerid(struct route_table *,  							 struct in_addr *);  extern void ospf_renegotiate_optional_capabilities(struct ospf *top); -  #endif /* _ZEBRA_OSPF_NEIGHBOR_H */  | 
