Searched refs:arp_pending_entries (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-3.7.0/subsys/net/l2/ethernet/ |
D | arp.c | 31 static sys_slist_t arp_pending_entries; variable 121 return arp_entry_find(&arp_pending_entries, iface, dst, NULL); in arp_entry_find_pending() 132 entry = arp_entry_find(&arp_pending_entries, iface, dst, &prev); in arp_entry_get_pending() 135 sys_slist_remove(&arp_pending_entries, prev, &entry->node); in arp_entry_get_pending() 138 if (sys_slist_is_empty(&arp_pending_entries)) { in arp_entry_get_pending() 183 sys_slist_append(&arp_pending_entries, &entry->node); in arp_entry_register_pending() 203 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&arp_pending_entries, in arp_request_timeout() 212 sys_slist_remove(&arp_pending_entries, NULL, &entry->node); in arp_request_timeout() 917 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&arp_pending_entries, in net_arp_clear_cache() 926 sys_slist_remove(&arp_pending_entries, prev, &entry->node); in net_arp_clear_cache() [all …]
|