diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:03:39 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 03:03:39 +0200 |
commit | c3c0ac8395502d7e84e94e0281cb72fa37a236c4 (patch) | |
tree | 7975560428f010d143f48ad83f7b1099fa471d39 /ospf6d/ospf6_area.h | |
parent | Increase SO_SNDBUF and SO_RCVBUF to 8MB to avoid drops in large networks. (diff) | |
download | frr-c3c0ac8395502d7e84e94e0281cb72fa37a236c4.tar.xz frr-c3c0ac8395502d7e84e94e0281cb72fa37a236c4.zip |
ospf6d: ospfv3-abr-ecmp-support.patch
OSPFv3: Add ABR support and make ECMP > 4.
Signed-off-by: Dinesh G Dutt <ddutt at cumulusnetworks.com>
Signed-off-by: Pradosh Mohapatra <pmohapat at cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_area.h')
-rw-r--r-- | ospf6d/ospf6_area.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_area.h b/ospf6d/ospf6_area.h index 655967a9a..691186906 100644 --- a/ospf6d/ospf6_area.h +++ b/ospf6d/ospf6_area.h @@ -55,8 +55,6 @@ struct ospf6_area struct ospf6_route_table *spf_table; struct ospf6_route_table *route_table; - struct thread *thread_spf_calculation; - struct thread *thread_route_calculation; u_int32_t spf_calculation; /* SPF calculation count */ struct thread *thread_router_lsa; @@ -98,6 +96,8 @@ struct ospf6_area #define PREFIX_NAME_OUT(A) (A)->plist_out.name #define PREFIX_LIST_OUT(A) (A)->plist_out.list + /* Time stamps. */ + struct timeval ts_spf; /* SPF calculation time stamp. */ }; #define OSPF6_AREA_ENABLE 0x01 |