Searched refs:autoip (Results 1 – 7 of 7) sorted by relevance
/third_party/lwip/src/core/ipv4/ |
D | autoip.c | 106 autoip_set_struct(struct netif *netif, struct autoip *autoip) in autoip_set_struct() argument 110 LWIP_ASSERT("autoip != NULL", autoip != NULL); in autoip_set_struct() 115 memset(autoip, 0, sizeof(struct autoip)); in autoip_set_struct() 117 netif_set_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_AUTOIP, autoip); in autoip_set_struct() 127 struct autoip *autoip = netif_autoip_data(netif); in autoip_restart() local 128 autoip->tried_llipaddr++; in autoip_restart() 138 struct autoip *autoip = netif_autoip_data(netif); in autoip_handle_arp_conflict() local 147 if (autoip->lastconflict > 0) { in autoip_handle_arp_conflict() 158 autoip->lastconflict = DEFEND_INTERVAL * AUTOIP_TICKS_PER_SECOND; in autoip_handle_arp_conflict() 171 struct autoip *autoip = netif_autoip_data(netif); in autoip_create_addr() local [all …]
|
/third_party/lwip/src/include/lwip/ |
D | autoip.h | 61 struct autoip struct 78 void autoip_set_struct(struct netif *netif, struct autoip *autoip); argument 80 #define autoip_remove_struct(netif) do { (netif)->autoip = NULL; } while (0) 91 #define netif_autoip_data(netif) ((struct autoip*)netif_get_client_data(netif, LWIP_NETIF_CLIENT_DA…
|
/third_party/lwip/src/ |
D | Filelists.mk | 54 CORE4FILES=$(LWIPDIR)/core/ipv4/autoip.c \
|
D | Filelists.cmake | 57 ${LWIP_DIR}/src/core/ipv4/autoip.c
|
/third_party/lwip/ |
D | lwip.gni | 58 "$LWIPDIR/core/ipv4/autoip.c",
|
D | CHANGELOG | 417 * autoip.c: fixed bug #49610 (sometimes AutoIP fails to reuse the same address) 511 * dhcp.h/c, autoip.h/.c: added functions dhcp/autoip_supplied_address() to 544 * netif.c, ip4.c, dhcp.c, autoip.c: fixed bug #37068 (netif up/down handling 547 ATTENTION: netif_set_up() now always has to be called, even when dhcp/autoip 1566 * ip_addr.h, etharp.h/.c, autoip.c: Create overridable macros for copying 1642 * dhcp.c/.h, autoip.c/.h: task #10139 (Prefer statically allocated 1643 memory): added autoip_set_struct() and dhcp_set_struct() to let autoip 1903 * autoip.c: Fixed bug #30039: AutoIP does not reuse previous addresses 2177 * autoip.c, dhcp.c, netif.c: patch #6725: Teach AutoIP and DHCP to respond 2285 * autoip.c: Fixed bug #27704: autoip starts with wrong address [all …]
|
D | UPGRADING | 242 * added autoip_set_struct() and dhcp_set_struct() to let autoip and dhcp work
|