]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_jp_agg.h
zebra: Allow ns delete to happen after under/over flow checks
[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 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
bba7cd12 19 */
982bff89
DS
20#ifndef __PIM_JP_AGG_H__
21#define __PIM_JP_AGG_H__
22
d62a17ae 23struct pim_jp_sources {
24 struct pim_upstream *up;
25 int is_join;
982bff89
DS
26};
27
d62a17ae 28struct pim_jp_agg_group {
29 struct in_addr group;
30 struct list *sources;
982bff89
DS
31};
32
d62a17ae 33void pim_jp_agg_upstream_verification(struct pim_upstream *up, bool ignore);
34int pim_jp_agg_is_in_list(struct list *group, struct pim_upstream *up);
06e12762 35
d62a17ae 36void pim_jp_agg_group_list_free(struct pim_jp_agg_group *jag);
37int pim_jp_agg_group_list_cmp(void *arg1, void *arg2);
982bff89 38
d62a17ae 39void pim_jp_agg_clear_group(struct list *group);
40void pim_jp_agg_remove_group(struct list *group, struct pim_upstream *up);
982bff89 41
d62a17ae 42void pim_jp_agg_add_group(struct list *group, struct pim_upstream *up,
43 bool is_join);
982bff89 44
d62a17ae 45void pim_jp_agg_switch_interface(struct pim_rpf *orpf, struct pim_rpf *nrpf,
46 struct pim_upstream *up);
982bff89 47
d62a17ae 48void pim_jp_agg_single_upstream_send(struct pim_rpf *rpf,
49 struct pim_upstream *up, bool is_join);
982bff89 50#endif