1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00

Don't close UDP pcbs when WiFi connection drops (#969)

This commit is contained in:
Ivan Grokhotkov 2015-11-07 23:52:59 +03:00
parent 66c69b32ad
commit adb0dac077

View File

@ -831,7 +831,6 @@ void ESP8266WiFiClass::_eventCallback(void* arg)
if (event->event == EVENT_STAMODE_DISCONNECTED) { if (event->event == EVENT_STAMODE_DISCONNECTED) {
WiFiClient::stopAll(); WiFiClient::stopAll();
WiFiUDP::stopAll();
} }
} }