]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_tib.h
b320f4cde0aa9b85f1e9853cbe21c7ebef94e898
[mirror_frr.git] / pimd / pim_tib.h
1 /*
2 * TIB (Tree Information Base) - just PIM <> IGMP/MLD glue for now
3 * Copyright (C) 2022 David Lamparter for NetDEF, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20 #ifndef _FRR_PIM_GLUE_H
21 #define _FRR_PIM_GLUE_H
22
23 #include "pim_addr.h"
24
25 struct pim_instance;
26 struct channel_oil;
27
28 extern bool tib_sg_gm_join(struct pim_instance *pim, pim_sgaddr sg,
29 struct interface *oif, struct channel_oil **oilp);
30 extern void tib_sg_gm_prune(struct pim_instance *pim, pim_sgaddr sg,
31 struct interface *oif, struct channel_oil **oilp);
32
33 #endif /* _FRR_PIM_GLUE_H */