From 7b13fae833e4220814a37c5412e52034cc161c49 Mon Sep 17 00:00:00 2001 From: Joel Cunningham Date: Mon, 17 Jul 2017 14:25:14 -0500 Subject: [PATCH] docs: update references to global igmp_group_list This updates documentation to refer to netif specific igmp group list rather than the old global igmp_group_list --- src/core/ipv4/igmp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/ipv4/igmp.c b/src/core/ipv4/igmp.c index a77a3c32..2f920351 100644 --- a/src/core/ipv4/igmp.c +++ b/src/core/ipv4/igmp.c @@ -207,7 +207,7 @@ igmp_report_groups(struct netif *netif) } /** - * Search for a group in the global igmp_group_list + * Search for a group in the netif's igmp group list * * @param ifp the network interface for which to look * @param addr the group ip address to search for @@ -286,9 +286,9 @@ igmp_lookup_group(struct netif *ifp, const ip4_addr_t *addr) } /** - * Remove a group in the global igmp_group_list, but don't free it yet + * Remove a group from netif's igmp group list, but don't free it yet * - * @param group the group to remove from the global igmp_group_list + * @param group the group to remove from the netif's igmp group list * @return ERR_OK if group was removed from the list, an err_t otherwise */ static err_t @@ -304,7 +304,7 @@ igmp_remove_group(struct netif* netif, struct igmp_group *group) break; } } - /* Group not found in the global igmp_group_list */ + /* Group not found in netif's igmp group list */ if (tmp_group == NULL) { err = ERR_ARG; }