mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-26 16:52:20 +01:00
Remove Rx timeout constraint in the request response stage, fix premature connection termination (#121)
This commit is contained in:
@@ -663,8 +663,10 @@ void AsyncWebServerRequest::send(AsyncWebServerResponse *response){
|
||||
_response = NULL;
|
||||
send(500);
|
||||
}
|
||||
else
|
||||
else {
|
||||
_client->setRxTimeout(0);
|
||||
_response->_respond(this);
|
||||
}
|
||||
}
|
||||
|
||||
AsyncWebServerResponse * AsyncWebServerRequest::beginResponse(int code, const String& contentType, const String& content){
|
||||
|
||||
Reference in New Issue
Block a user