From cb2bc4cb0293fca15794c67726a87c699553cf10 Mon Sep 17 00:00:00 2001 From: rgirada Date: Sat, 15 Aug 2020 00:27:25 -0700 Subject: ospfd: summarisation specific data structures. Description: Data structures definitions for summary route. Signed-off-by: Rajesh Girada --- ospfd/ospfd.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ospfd/ospfd.h') diff --git a/ospfd/ospfd.h b/ospfd/ospfd.h index 5be897400b..bdd09e1e76 100644 --- a/ospfd/ospfd.h +++ b/ospfd/ospfd.h @@ -355,6 +355,22 @@ struct ospf { /* last HELPER exit reason */ uint32_t last_exit_reason; + /* delay timer to process external routes + * with summary address. + */ + struct thread *t_external_aggr; + + /* delay interval in seconds */ + unsigned int aggr_delay_interval; + + /* Table of configured Aggregate addresses */ + struct route_table *rt_aggr_tbl; + + /* used as argument for aggr delay + * timer thread. + */ + int aggr_action; + /* MPLS LDP-IGP Sync */ struct ldp_sync_info_cmd ldp_sync_cmd; -- cgit v1.2.3