We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0128fcd commit c950fd1Copy full SHA for c950fd1
src/internals/StreamHttpReply.cpp
@@ -27,7 +27,7 @@ void ArduinoHttpServer::AbstractStreamHttpReply::sendHeader(
27
getStream().print(AHS_F("HTTP/1.1 "));
28
getStream().print(getCode() + " ");
29
getStream().print(title + "\r\n");
30
- getStream().print(AHS_F("Connection: keep-alive\r\n"));
+ getStream().print(AHS_F("Connection: close\r\n"));
31
if (size > 0) {
32
getStream().print(AHS_F("Content-Length: "));
33
getStream().print(size);
0 commit comments