diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-07-02 11:39:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-02 11:39:58 -0400 |
| commit | 8a0ac82d963d20f254e0e4c33c42aef95b74286d (patch) | |
| tree | 45c87b899ce5fed542cb4836d18fe1cad9a24e54 /pimd/pim_nb.c | |
| parent | 5537beafd1efdd3deacb4b5978ac6c3348fd18b2 (diff) | |
| parent | 1f3ae3a6783387d93dd9d315cee19a8ccd4f0f0d (diff) | |
Merge pull request #8969 from opensourcerouting/msdp-timers
pimd: allow MSDP timers to be configured
Diffstat (limited to 'pimd/pim_nb.c')
| -rw-r--r-- | pimd/pim_nb.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pimd/pim_nb.c b/pimd/pim_nb.c index 848a28d31a..6fe078bd8e 100644 --- a/pimd/pim_nb.c +++ b/pimd/pim_nb.c @@ -118,6 +118,24 @@ const struct frr_yang_module_info frr_pim_info = { } }, { + .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol/frr-pim:pim/address-family/msdp/hold-time", + .cbs = { + .modify = pim_msdp_hold_time_modify, + } + }, + { + .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol/frr-pim:pim/address-family/msdp/keep-alive", + .cbs = { + .modify = pim_msdp_keep_alive_modify, + } + }, + { + .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol/frr-pim:pim/address-family/msdp/connection-retry", + .cbs = { + .modify = pim_msdp_connection_retry_modify, + } + }, + { .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol/frr-pim:pim/address-family/msdp-mesh-groups", .cbs = { .create = pim_msdp_mesh_group_create, |
