]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_igmpv3.h
pimd: Modifying name of struct igmp_group to struct gm_group for IPv6.
[mirror_frr.git] / pimd / pim_igmpv3.h
CommitLineData
12e41d03 1/*
896014f4
DL
2 * PIM for Quagga
3 * Copyright (C) 2008 Everton da Silva Marques
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for 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 */
12e41d03
DL
19
20#ifndef PIM_IGMPV3_H
21#define PIM_IGMPV3_H
22
23#include <zebra.h>
24#include "if.h"
25
e34e07e6
DL
26#include "pim_igmp.h"
27
12e41d03
DL
28#define IGMP_V3_CHECKSUM_OFFSET (2)
29#define IGMP_V3_REPORT_NUMGROUPS_OFFSET (6)
30#define IGMP_V3_REPORT_GROUPPRECORD_OFFSET (8)
31#define IGMP_V3_NUMSOURCES_OFFSET (10)
32#define IGMP_V3_SOURCES_OFFSET (12)
33
b05b72e8
DW
34#define IGMP_GRP_REC_TYPE_MODE_IS_INCLUDE (1)
35#define IGMP_GRP_REC_TYPE_MODE_IS_EXCLUDE (2)
36#define IGMP_GRP_REC_TYPE_CHANGE_TO_INCLUDE_MODE (3)
37#define IGMP_GRP_REC_TYPE_CHANGE_TO_EXCLUDE_MODE (4)
38#define IGMP_GRP_REC_TYPE_ALLOW_NEW_SOURCES (5)
39#define IGMP_GRP_REC_TYPE_BLOCK_OLD_SOURCES (6)
40
12e41d03
DL
41/* GMI: Group Membership Interval */
42#define PIM_IGMP_GMI_MSEC(qrv,qqi,qri_dsec) ((qrv) * (1000 * (qqi)) + 100 * (qri_dsec))
43
44/* OQPI: Other Querier Present Interval */
45#define PIM_IGMP_OQPI_MSEC(qrv,qqi,qri_dsec) ((qrv) * (1000 * (qqi)) + 100 * ((qri_dsec) >> 1))
46
47/* SQI: Startup Query Interval */
48#define PIM_IGMP_SQI(qi) (((qi) < 4) ? 1 : ((qi) >> 2))
49
50/* LMQT: Last Member Query Time */
51#define PIM_IGMP_LMQT_MSEC(lmqi_dsec, lmqc) ((lmqc) * (100 * (lmqi_dsec)))
52
53/* OHPI: Older Host Present Interval */
54#define PIM_IGMP_OHPI_DSEC(qrv,qqi,qri_dsec) ((qrv) * (10 * (qqi)) + (qri_dsec))
55
a16db099
SG
56void igmp_group_reset_gmi(struct gm_group *group);
57void igmp_source_reset_gmi(struct gm_group *group, struct gm_source *source);
12e41d03 58
51700107
SG
59void igmp_source_free(struct gm_source *source);
60void igmp_source_delete(struct gm_source *source);
12e41d03
DL
61void igmp_source_delete_expired(struct list *source_list);
62
12e41d03 63void igmpv3_report_isin(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 64 struct in_addr group_addr, int num_sources,
65 struct in_addr *sources);
12e41d03 66void igmpv3_report_isex(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 67 struct in_addr group_addr, int num_sources,
68 struct in_addr *sources, int from_igmp_v2_report);
12e41d03 69void igmpv3_report_toin(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 70 struct in_addr group_addr, int num_sources,
71 struct in_addr *sources);
12e41d03 72void igmpv3_report_toex(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 73 struct in_addr group_addr, int num_sources,
74 struct in_addr *sources);
12e41d03 75void igmpv3_report_allow(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 76 struct in_addr group_addr, int num_sources,
77 struct in_addr *sources);
12e41d03 78void igmpv3_report_block(struct igmp_sock *igmp, struct in_addr from,
d62a17ae 79 struct in_addr group_addr, int num_sources,
80 struct in_addr *sources);
12e41d03 81
a16db099 82void igmp_group_timer_lower_to_lmqt(struct gm_group *group);
51700107 83void igmp_source_timer_lower_to_lmqt(struct gm_source *source);
12e41d03 84
a16db099
SG
85struct gm_source *igmp_find_source_by_addr(struct gm_group *group,
86 struct in_addr src_addr);
12e41d03 87
a16db099 88void igmp_v3_send_query(struct gm_group *group, int fd, const char *ifname,
d62a17ae 89 char *query_buf, int query_buf_size, int num_sources,
90 struct in_addr dst_addr, struct in_addr group_addr,
91 int query_max_response_time_dsec, uint8_t s_flag,
92 uint8_t querier_robustness_variable,
93 uint16_t querier_query_interval);
94
95void igmp_v3_recv_query(struct igmp_sock *igmp, const char *from_str,
96 char *igmp_msg);
97
98int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,
99 const char *from_str, char *igmp_msg, int igmp_msg_len);
12e41d03
DL
100
101#endif /* PIM_IGMPV3_H */