Removed header: "Connection: close"

I'm not sure what my motivation was to put it in there. It has no
place in a CGI program.
This commit is contained in:
tastytea 2018-12-03 22:07:35 +01:00
parent 5205395f7f
commit b00dce398e
Signed by untrusted user: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.2)
project(libravatarserv
VERSION 0.6.5
VERSION 0.6.6
LANGUAGES CXX
)

View File

@ -32,7 +32,6 @@ int main()
{
cout << "Server: libravatarserv/" << global::version << endl;
cout << "Cache-Control: public, max-age=86400\n";
cout << "Connection: close\n";
const char *request = std::getenv("REQUEST_URI");
if (request == nullptr)