We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 496b841 commit e7e9a4cCopy full SHA for e7e9a4c
libraries/WebServer/src/WebServer.cpp
@@ -430,7 +430,7 @@ void WebServer::handleClient() {
430
case HC_WAIT_READ:
431
// Wait for data from client to become available
432
if (_currentClient.available()) {
433
- _currentClient.setTimeout(HTTP_MAX_SEND_WAIT); /* / 1000 removed, WifiClient setTimeout changed to ms */
+ _currentClient.setConnectionTimeout(HTTP_MAX_SEND_WAIT);
434
if (_parseRequest(_currentClient)) {
435
_contentLength = CONTENT_LENGTH_NOT_SET;
436
_responseCode = 0;
0 commit comments