diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-19 15:45:11 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-02-16 16:40:56 +0100 | 
| commit | b7f71639c93584eb92c459b66dde0037077aa67c (patch) | |
| tree | 7f5eb5177dee7dcd73d1b4e0b244dde9e435c808 /pimd/subdir.am | |
| parent | deb76ca4ce5efa774f6b9ea530fa0737de3bdb48 (diff) | |
pim6d: isolate remaining TODOs into stubs file
This creates `pim6_stubs.c`, which is intended to temporarily provide
stubbed-out definitions of some functions we don't have yet for IPv6.
This makes pim6d compile without the `PIM_V6_TEMP_BREAK` hack, and is
very important as an intermediate step to get a working environment for
further work.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/subdir.am')
| -rw-r--r-- | pimd/subdir.am | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/pimd/subdir.am b/pimd/subdir.am index 0afaf666e0..8e99b0c010 100644 --- a/pimd/subdir.am +++ b/pimd/subdir.am @@ -18,7 +18,6 @@ pim_common = \  	pimd/pim_bfd.c \  	pimd/pim_br.c \  	pimd/pim_bsm.c \ -	pimd/pim_cmd.c \  	pimd/pim_errors.c \  	pimd/pim_hello.c \  	pimd/pim_iface.c \ @@ -34,10 +33,7 @@ pim_common = \  	pimd/pim_nb.c \  	pimd/pim_nb_config.c \  	pimd/pim_neighbor.c \ -	pimd/pim_nht.c \  	pimd/pim_oil.c \ -	pimd/pim_pim.c \ -	pimd/pim_register.c \  	pimd/pim_routemap.c \  	pimd/pim_rp.c \  	pimd/pim_rpf.c \ @@ -52,13 +48,13 @@ pim_common = \  	pimd/pim_util.c \  	pimd/pim_vty.c \  	pimd/pim_zebra.c \ -	pimd/pim_zlookup.c \  	pimd/pim_vxlan.c \  	pimd/pimd.c \  	# end  pimd_pimd_SOURCES = \  	$(pim_common) \ +	pimd/pim_cmd.c \  	pimd/pim_igmp.c \  	pimd/pim_igmp_mtrace.c \  	pimd/pim_igmp_stats.c \ @@ -69,7 +65,11 @@ pimd_pimd_SOURCES = \  	pimd/pim_msdp.c \  	pimd/pim_msdp_packet.c \  	pimd/pim_msdp_socket.c \ +	pimd/pim_nht.c \ +	pimd/pim_pim.c \ +	pimd/pim_register.c \  	pimd/pim_signals.c \ +	pimd/pim_zlookup.c \  	pimd/pim_zpthread.c \  	# end @@ -82,6 +82,7 @@ nodist_pimd_pimd_SOURCES = \  pimd_pim6d_SOURCES = \  	$(pim_common) \  	pimd/pim6_main.c \ +	pimd/pim6_stubs.c \  	# end  nodist_pimd_pim6d_SOURCES = \  | 
