kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 9b3ff7db5342b87380729be71dd8c421f0d2cbb3
parent 9dbcf5399f2d1f17d66194c5bc43e5d6350fc4df
Author: Joris Vink <joris@coders.se>
Date:   Mon,  4 Aug 2014 20:12:31 +0200

Lowercase the HTTP headers sent in normal HTTP responses.

SPDY already had this, as required by the spec.

Diffstat:
src/http.c | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/http.c b/src/http.c @@ -1089,12 +1089,12 @@ http_response_normal(struct http_request *req, struct connection *c, buf = kore_buf_create(KORE_BUF_INITIAL); kore_buf_appendf(buf, "HTTP/1.1 %d %s\r\n", status, http_status_text(status)); - kore_buf_appendf(buf, "Server: %s (%d.%d-%s)\r\n", + kore_buf_appendf(buf, "server: %s (%d.%d-%s)\r\n", KORE_NAME_STRING, KORE_VERSION_MAJOR, KORE_VERSION_MINOR, KORE_VERSION_STATE); if (status == HTTP_STATUS_METHOD_NOT_ALLOWED) - kore_buf_appendf(buf, "Allow: GET, POST\r\n"); + kore_buf_appendf(buf, "allow: GET, POST\r\n"); if (c->flags & CONN_CLOSE_EMPTY) connection_close = 1; @@ -1111,16 +1111,16 @@ http_response_normal(struct http_request *req, struct connection *c, } if (http_keepalive_time && connection_close == 0) { - kore_buf_appendf(buf, "Connection: keep-alive\r\n"); - kore_buf_appendf(buf, "Keep-Alive: timeout=%d\r\n", + kore_buf_appendf(buf, "connection: keep-alive\r\n"); + kore_buf_appendf(buf, "keep-alive: timeout=%d\r\n", http_keepalive_time); } else { c->flags |= CONN_CLOSE_EMPTY; - kore_buf_appendf(buf, "Connection: close\r\n"); + kore_buf_appendf(buf, "connection: close\r\n"); } if (http_hsts_enable) { - kore_buf_appendf(buf, "Strict-Transport-Security: "); + kore_buf_appendf(buf, "strict-transport-security: "); kore_buf_appendf(buf, "max-age=%" PRIu64 "\r\n", http_hsts_enable); } @@ -1133,7 +1133,7 @@ http_response_normal(struct http_request *req, struct connection *c, } if (len > 0) { - kore_buf_appendf(buf, "Content-length: %d\r\n", len); + kore_buf_appendf(buf, "content-length: %d\r\n", len); kore_buf_append(buf, "\r\n", 2); }