diff options
author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-01-18 15:36:17 +0100 |
---|---|---|
committer | Mobashshera Rasool <mrasool@vmware.com> | 2022-02-28 10:38:24 +0100 |
commit | 5d613d13b29da2e1e6ee588051a4465af1a53188 (patch) | |
tree | f66ae67cefbcd33f3b960745050e3e43231fbb68 /pimd/subdir.am | |
parent | Merge pull request #10376 from patrasar/master_pimv6_vtysh (diff) | |
download | frr-5d613d13b29da2e1e6ee588051a4465af1a53188.tar.xz frr-5d613d13b29da2e1e6ee588051a4465af1a53188.zip |
pim6d: Adding the base changes
Adding the file pim6_cmd.h and pim6d_cmd.c as the base changes
for implementing the CLI changes
Removed the pim_cmd_init from the stub file.
Co-authored-by: Sarita Patra <saritap@vmware.com>
Co-authored-by: Abhishek N R <abnr@vmware.com>
Co-authored-by: Sai Gomathi N <nsaigomathi@vmware.com>
Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
Diffstat (limited to 'pimd/subdir.am')
-rw-r--r-- | pimd/subdir.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pimd/subdir.am b/pimd/subdir.am index 52f2ed75b..552fb171a 100644 --- a/pimd/subdir.am +++ b/pimd/subdir.am @@ -6,10 +6,10 @@ if PIMD sbin_PROGRAMS += pimd/pimd bin_PROGRAMS += pimd/mtracebis noinst_PROGRAMS += pimd/test_igmpv3_join -vtysh_scan += pimd/pim_cmd.c - -# Add pim6_cmd.c under vtysh_scan, once the file is merged - +vtysh_scan += \ + pimd/pim_cmd.c \ + pimd/pim6_cmd.c \ + #end vtysh_daemons += pimd vtysh_daemons += pim6d man8 += $(MANBUILD)/frr-pimd.8 @@ -87,6 +87,7 @@ pimd_pim6d_SOURCES = \ $(pim_common) \ pimd/pim6_main.c \ pimd/pim6_stubs.c \ + pimd/pim6_cmd.c \ # end nodist_pimd_pim6d_SOURCES = \ @@ -150,10 +151,12 @@ noinst_HEADERS += \ pimd/pimd.h \ pimd/mtracebis_netlink.h \ pimd/mtracebis_routeget.h \ + pimd/pim6_cmd.h \ # end clippy_scan += \ pimd/pim_cmd.c \ + pimd/pim6_cmd.c \ # end pimd_pimd_CFLAGS = $(AM_CFLAGS) -DPIM_IPV=4 |