diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-12-21 14:50:34 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-04 18:23:39 +0100 |
commit | da03883e1edcd191091482008bffa85f0941c2bf (patch) | |
tree | 429c7643db0f94c48e4c5d27d55c8002ef8386a5 /pimd/pim_instance.h | |
parent | pimd: Move the infinite_assert_metric global to pim_router (diff) | |
download | frr-da03883e1edcd191091482008bffa85f0941c2bf.tar.xz frr-da03883e1edcd191091482008bffa85f0941c2bf.zip |
pimd: Convert rpf_cache_refresh_delay_msec into pim_router struct
Move the rpf_cache_refresh_delay_msec into the pim_router since
it should own the data.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_instance.h')
-rw-r--r-- | pimd/pim_instance.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_instance.h b/pimd/pim_instance.h index 9f36b9c30..f7b8e32af 100644 --- a/pimd/pim_instance.h +++ b/pimd/pim_instance.h @@ -51,6 +51,7 @@ struct pim_router { int t_periodic; struct pim_assert_metric infinite_assert_metric; + long rpf_cache_refresh_delay_msec; }; /* Per VRF PIM DB */ |