Home
last modified time | relevance | path

Searched refs:mcast_ifindex (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/include/lwip/
Draw.h86 u8_t mcast_ifindex; member
131 #define raw_set_multicast_netif_index(pcb, idx) ((pcb)->mcast_ifindex = (idx))
132 #define raw_get_multicast_netif_index(pcb) ((pcb)->mcast_ifindex)
Dudp.h99 u8_t mcast_ifindex; member
175 #define udp_set_multicast_netif_index(pcb, idx) ((pcb)->mcast_ifindex = (idx))
176 #define udp_get_multicast_netif_index(pcb) ((pcb)->mcast_ifindex)
/third_party/lwip/src/core/
Dudp.c562 if (pcb->mcast_ifindex != NETIF_NO_INDEX) { in udp_sendto_chksum()
563 netif = netif_get_by_index(pcb->mcast_ifindex); in udp_sendto_chksum()
Draw.c374 netif = netif_get_by_index(pcb->mcast_ifindex); in raw_sendto()