mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
bugfix for TCPv6 send ok when sta disconnect
This commit is contained in:
parent
718af6ed07
commit
e1d78a218a
@ -342,6 +342,9 @@ esp_err_t tcpip_adapter_down(tcpip_adapter_if_t tcpip_if)
|
||||
tcpip_adapter_reset_ip_info(tcpip_if);
|
||||
}
|
||||
|
||||
for(int8_t i = 0 ;i < LWIP_IPV6_NUM_ADDRESSES ;i++) {
|
||||
netif_ip6_addr_set(esp_netif[tcpip_if], i, IP6_ADDR_ANY6);
|
||||
}
|
||||
netif_set_addr(esp_netif[tcpip_if], IP4_ADDR_ANY4, IP4_ADDR_ANY4, IP4_ADDR_ANY4);
|
||||
netif_set_down(esp_netif[tcpip_if]);
|
||||
tcpip_adapter_start_ip_lost_timer(tcpip_if);
|
||||
|
Loading…
Reference in New Issue
Block a user