Fix bug #49125: Need a way to iterate multicast groups for MAC filtering

-> let list heads be a public symbol
This commit is contained in:
Dirk Ziegelmeier
2016-09-19 08:45:57 +02:00
parent 58c8e0f8ca
commit ee4cd45c98
4 changed files with 8 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ static void igmp_delaying_member(struct igmp_group *group, u8_t maxresp);
static err_t igmp_ip_output_if(struct pbuf *p, const ip4_addr_t *src, const ip4_addr_t *dest, struct netif *netif);
static void igmp_send(struct igmp_group *group, u8_t type);
static struct igmp_group* igmp_group_list;
struct igmp_group* igmp_group_list;
static ip4_addr_t allsystems;
static ip4_addr_t allrouters;

View File

@@ -77,7 +77,7 @@
/* The list of joined groups. */
static struct mld_group* mld_group_list;
struct mld_group* mld_group_list;
/* Forward declarations. */