diff options
| author | Sai Gomathi <nsaigomathi@vmware.com> | 2021-12-03 09:33:53 -0800 | 
|---|---|---|
| committer | Sai Gomathi <nsaigomathi@vmware.com> | 2021-12-03 10:10:40 -0800 | 
| commit | 517001077fe2f038adfef09bdc9b09b7e9a654d0 (patch) | |
| tree | 35e9ebf70a3413970767daec8752bd6f6e315429 /pimd/pim_igmpv3.h | |
| parent | 9c8523e089e97d83a7487f6eee093b73f7b49bd9 (diff) | |
pimd: Modifying name of struct igmp_source to struct gm_source for IPv6.
Modifying name of struct igmp_source to struct gm_source, which is to be used
by both IPv4 and IPv6(for both MLD and IGMP).
Co-authored-by: Mobashshera Rasool <mrasool@vmware.com>
Co-authored-by: Sarita Patra <saritap@vmware.com>
Signed-off-by: Sai Gomathi <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim_igmpv3.h')
| -rw-r--r-- | pimd/pim_igmpv3.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/pimd/pim_igmpv3.h b/pimd/pim_igmpv3.h index 273f944b3c..f3352e1fa3 100644 --- a/pimd/pim_igmpv3.h +++ b/pimd/pim_igmpv3.h @@ -55,10 +55,10 @@  void igmp_group_reset_gmi(struct igmp_group *group);  void igmp_source_reset_gmi(struct igmp_group *group, -			   struct igmp_source *source); +			   struct gm_source *source); -void igmp_source_free(struct igmp_source *source); -void igmp_source_delete(struct igmp_source *source); +void igmp_source_free(struct gm_source *source); +void igmp_source_delete(struct gm_source *source);  void igmp_source_delete_expired(struct list *source_list);  void igmpv3_report_isin(struct igmp_sock *igmp, struct in_addr from, @@ -81,9 +81,9 @@ void igmpv3_report_block(struct igmp_sock *igmp, struct in_addr from,  			 struct in_addr *sources);  void igmp_group_timer_lower_to_lmqt(struct igmp_group *group); -void igmp_source_timer_lower_to_lmqt(struct igmp_source *source); +void igmp_source_timer_lower_to_lmqt(struct gm_source *source); -struct igmp_source *igmp_find_source_by_addr(struct igmp_group *group, +struct gm_source *igmp_find_source_by_addr(struct igmp_group *group,  					     struct in_addr src_addr);  void igmp_v3_send_query(struct igmp_group *group, int fd, const char *ifname,  | 
