Home
last modified time | relevance | path

Searched refs:mld_group (Results 1 – 3 of 3) sorted by relevance

/third_party/lwip/src/core/ipv6/
Dmld6.c84 static struct mld_group *mld6_new_group(struct netif *ifp, const ip6_addr_t *addr);
85 static err_t mld6_remove_group(struct netif *netif, struct mld_group *group);
86 static void mld6_delayed_report(struct mld_group *group, u16_t maxresp);
87 static void mld6_send(struct netif *netif, struct mld_group *group, u8_t type);
98 struct mld_group *group = netif_mld6_data(netif); in mld6_stop()
103 struct mld_group *next = group->next; /* avoid use-after-free below */ in mld6_stop()
127 struct mld_group *group = netif_mld6_data(netif); in mld6_report_groups()
143 struct mld_group *
146 struct mld_group *group = netif_mld6_data(ifp); in mld6_lookfor_group()
167 static struct mld_group *
[all …]
/third_party/lwip/src/include/lwip/
Dmld6.h58 struct mld_group { struct
60 struct mld_group *next; argument
78 struct mld_group *mld6_lookfor_group(struct netif *ifp, const ip6_addr_t *addr); argument
91 #define netif_mld6_data(netif) ((struct mld_group *)netif_get_client_data(netif, LWIP_NETIF_CLIENT_…
/third_party/lwip/src/include/lwip/priv/
Dmemp_std.h121 LWIP_MEMPOOL(MLD6_GROUP, MEMP_NUM_MLD6_GROUP, sizeof(struct mld_group), "MLD6_GROUP")