]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_jp_agg.h
Merge pull request #291 from AnuradhaKaruppiah/pim-ssm
[mirror_frr.git] / pimd / pim_jp_agg.h
CommitLineData
bba7cd12
DS
1/*
2 * PIM for FRR - J/P Aggregation
3 * Copyright (C) 2017 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
982bff89
DS
21#ifndef __PIM_JP_AGG_H__
22#define __PIM_JP_AGG_H__
23
24struct pim_jp_sources
25{
26 struct pim_upstream *up;
27 int is_join;
28};
29
30struct pim_jp_agg_group
31{
32 struct in_addr group;
982bff89
DS
33 struct list *sources;
34};
35
06e12762
DS
36void pim_jp_agg_upstream_verification (struct pim_upstream *up, bool ignore);
37int pim_jp_agg_is_in_list (struct list *group, struct pim_upstream *up);
38
982bff89
DS
39void pim_jp_agg_group_list_free (struct pim_jp_agg_group *jag);
40int pim_jp_agg_group_list_cmp (void *arg1, void *arg2);
41
42void pim_jp_agg_clear_group (struct list *group);
43void pim_jp_agg_remove_group (struct list *group, struct pim_upstream *up);
44
45void pim_jp_agg_add_group (struct list *group,
46 struct pim_upstream *up, bool is_join);
47
48void pim_jp_agg_switch_interface (struct pim_rpf *orpf,
49 struct pim_rpf *nrpf,
50 struct pim_upstream *up);
51
52void pim_jp_agg_single_upstream_send (struct pim_rpf *rpf,
53 struct pim_upstream *up,
54 bool is_join);
55#endif