diff options
| author | Sarita Patra <saritap@vmware.com> | 2022-07-12 03:49:48 -0700 |
|---|---|---|
| committer | Sarita Patra <saritap@vmware.com> | 2022-10-20 01:07:46 -0700 |
| commit | dfeda85c4bd6d19ee711750e8b8de6c4f6e82762 (patch) | |
| tree | 31608b61bdef996efa71b19b4515d2f7ccda6c3d /pimd/pim_cmd_common.h | |
| parent | 5e651c369947edbe7bc5bea07770c9a00f061abf (diff) | |
pim6d: Add [no] ipv6 pim unicast-bsm" command
Introduced common api pim_process_unicast_bsm_cmd,
pim_process_no_unicast_bsm_cmd which will process
both "[no] ip pim unicast-bsm" command and "[no] ipv6 pim
unicast-bsm" command.
Signed-off-by: Sarita Patra <saritap@vmware.com>
Diffstat (limited to 'pimd/pim_cmd_common.h')
| -rw-r--r-- | pimd/pim_cmd_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_cmd_common.h b/pimd/pim_cmd_common.h index f2ce292f03..6a72664a55 100644 --- a/pimd/pim_cmd_common.h +++ b/pimd/pim_cmd_common.h @@ -64,6 +64,8 @@ int pim_process_no_ip_mroute_cmd(struct vty *vty, const char *interface, const char *group_str, const char *src_str); int pim_process_bsm_cmd(struct vty *vty); int pim_process_no_bsm_cmd(struct vty *vty); +int pim_process_unicast_bsm_cmd(struct vty *vty); +int pim_process_no_unicast_bsm_cmd(struct vty *vty); void json_object_pim_upstream_add(json_object *json, struct pim_upstream *up); void pim_show_rpf(struct pim_instance *pim, struct vty *vty, json_object *json); void pim_show_neighbors_secondary(struct pim_instance *pim, struct vty *vty); |
