]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_rp.h
df18c998d69a4e760f5f7275909ba42e253e7bcc
[mirror_frr.git] / pimd / pim_rp.h
1 /*
2 * PIM for Quagga
3 * Copyright (C) 2015 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 */
21 #ifndef PIM_RP_H
22 #define PIM_RP_H
23
24 #include <zebra.h>
25 #include "prefix.h"
26 #include "vty.h"
27 #include "plist.h"
28 #include "pim_iface.h"
29 #include "pim_rpf.h"
30
31 struct rp_info
32 {
33 struct prefix group;
34 struct pim_rpf rp;
35 int i_am_rp;
36 char *plist;
37 };
38
39 void pim_rp_init (void);
40 void pim_rp_free (void);
41
42 int pim_rp_new (const char *rp, const char *group, const char *plist);
43 int pim_rp_del (const char *rp, const char *group, const char *plist);
44 void pim_rp_prefix_list_update (struct prefix_list *plist);
45
46 int pim_rp_config_write (struct vty *vty);
47
48 int pim_rp_setup (void);
49
50 int pim_rp_i_am_rp (struct in_addr group);
51 void pim_rp_check_on_if_add(struct pim_interface *pim_ifp);
52 void pim_i_am_rp_re_evaluate(void);
53
54 int pim_rp_check_is_my_ip_address (struct in_addr group, struct in_addr dest_addr);
55
56 int pim_rp_set_upstream_addr (struct in_addr *up, struct in_addr source, struct in_addr group);
57
58 struct pim_rpf *pim_rp_g (struct in_addr group);
59
60 #define I_am_RP(G) pim_rp_i_am_rp ((G))
61 #define RP(G) pim_rp_g ((G))
62
63 void pim_rp_show_information (struct vty *vty, u_char uj);
64 void pim_resolve_rp_nh (void);
65 int pim_rp_list_cmp (void *v1, void *v2);
66 #endif