You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
If the client doesn't have a chance to terminate TCP connection, in this case, ESP8266 goes to deep sleep, then the TCP is left in Established state.
I've tried to abort the TCP when timeout happens, but it doesn't work.
void AsyncWebServerRequest::_onTimeout(uint32_t time){
os_printf("TIMEOUT: %u, state: %s, abort\n", time, _client->stateToString());
_client->abort();
}
Any opinion?
The text was updated successfully, but these errors were encountered:
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
This is the same issue as this one.
esp8266/Arduino#2750
If the client doesn't have a chance to terminate TCP connection, in this case, ESP8266 goes to deep sleep, then the TCP is left in Established state.
I've tried to abort the TCP when timeout happens, but it doesn't work.
void AsyncWebServerRequest::_onTimeout(uint32_t time){
os_printf("TIMEOUT: %u, state: %s, abort\n", time, _client->stateToString());
_client->abort();
}
Any opinion?
The text was updated successfully, but these errors were encountered: