Skip to content
Prev Previous commit
Next Next commit
Merge branch 'master' into webhook
  • Loading branch information
d-a-v committed Jul 17, 2020
commit 9e452568ab0155cb0a61895b7edd2540d0a3fb7b
7 changes: 5 additions & 2 deletions libraries/ESP8266WebServer/src/Parsing-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,11 @@ typename ESP8266WebServerTemplate<ServerType>::ClientFuture ESP8266WebServerTemp
}
_currentMethod = method;

DBGWS("method: %s url: %s search: %s\n",
methodStr.c_str(), url.c_str(), searchStr.c_str());
_keepAlive = _currentVersion > 0; // Keep the connection alive by default
// if the protocol version is greater than HTTP 1.0

DBGWS("method: %s url: %s search: %s keepAlive=: %d\n",
methodStr.c_str(), url.c_str(), searchStr.c_str(), _keepAlive);

//attach handler
RequestHandlerType* handler;
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.