Commit 7034f492 authored by valenok's avatar valenok

should_keep_alive(): using mg_strcasecmp() instead of strcmp() to compare header value

parent 62404557
...@@ -731,7 +731,7 @@ static int should_keep_alive(const struct mg_connection *conn) { ...@@ -731,7 +731,7 @@ static int should_keep_alive(const struct mg_connection *conn) {
const char *http_version = conn->request_info.http_version; const char *http_version = conn->request_info.http_version;
const char *header = mg_get_header(conn, "Connection"); const char *header = mg_get_header(conn, "Connection");
return (header == NULL && http_version && !strcmp(http_version, "1.1")) || return (header == NULL && http_version && !strcmp(http_version, "1.1")) ||
(header != NULL && !strcmp(header, "keep-alive")); (header != NULL && !mg_strcasecmp(header, "keep-alive"));
} }
static const char *suggest_connection_header(const struct mg_connection *conn) { static const char *suggest_connection_header(const struct mg_connection *conn) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment