diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-19 01:56:10 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-24 19:51:35 +0200 |
commit | 4e0bc0f0a8cc235c45db9a2939ff985cf9c75e44 (patch) | |
tree | 51b78d232c078b11a15e7d93ef96d78ca5338ad5 /pimd/pim_instance.h | |
parent | pimd: Fix c_oil->pim set spot (diff) | |
download | frr-4e0bc0f0a8cc235c45db9a2939ff985cf9c75e44.tar.xz frr-4e0bc0f0a8cc235c45db9a2939ff985cf9c75e44.zip |
pimd: Refactore qpim_static_route_list into pim->static_routes
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_instance.h')
-rw-r--r-- | pimd/pim_instance.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index 33f81497f..83c8b3be9 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -53,6 +53,9 @@ struct pim_instance { int64_t mroute_del_last; struct interface *regiface; + + // List of static routes; + struct list *static_routes; }; void pim_vrf_init(void); |