diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-05-06 12:36:51 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-05-06 15:10:57 +0200 |
commit | 993e3d8e131ab729f86bfd01f031093dc4827d87 (patch) | |
tree | ed2851d0ffc8a5d0bf80f0134b60bf13ff44cf2a /pimd/pim_vty.h | |
parent | pimd: pass down length for register messages (diff) | |
download | frr-993e3d8e131ab729f86bfd01f031093dc4827d87.tar.xz frr-993e3d8e131ab729f86bfd01f031093dc4827d87.zip |
pimd: un-dependency-hell `pim_instance.h`
This is causing build issues on BSD by including (transitively)
`linux/mroute6.h` - try to address by disentangling the headers a bunch.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_vty.h')
-rw-r--r-- | pimd/pim_vty.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_vty.h b/pimd/pim_vty.h index c192ba3bb..0f11d6ec4 100644 --- a/pimd/pim_vty.h +++ b/pimd/pim_vty.h @@ -22,6 +22,8 @@ #include "vty.h" +struct pim_instance; + int pim_debug_config_write(struct vty *vty); int pim_global_config_write_worker(struct pim_instance *pim, struct vty *vty); int pim_interface_config_write(struct vty *vty); |