From dbdef6859c59b5b04d3c68f3e664e27932d556c4 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 May 2009 19:43:54 +0200 Subject: waitress: Downgrade to HTTP/1.0 I don't need you, Transfer-Encoding: chunked. Nobody wants you here, Transfer-Encoding: chunked. Get lost. Thanks. Oh, btw: Fixes "Unknown." error in PianoGetGenreStations () --- libwaitress/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libwaitress') diff --git a/libwaitress/src/main.c b/libwaitress/src/main.c index a9acbd7..06daf24 100644 --- a/libwaitress/src/main.c +++ b/libwaitress/src/main.c @@ -338,12 +338,12 @@ WaitressReturn_t WaitressFetchCall (WaitressHandle_t *waith) { /* send request */ if (WaitressProxyEnabled (waith)) { snprintf (writeBuf, sizeof (writeBuf), - "%s http://%s:%s%s HTTP/1.1\r\nProxy-Connection: close\r\n", + "%s http://%s:%s%s HTTP/1.0\r\n", (waith->method == WAITRESS_METHOD_GET ? "GET" : "POST"), waith->host, waith->port, waith->path); } else { snprintf (writeBuf, sizeof (writeBuf), - "%s %s HTTP/1.1\r\nConnection: close\r\n", + "%s %s HTTP/1.0\r\n", (waith->method == WAITRESS_METHOD_GET ? "GET" : "POST"), waith->path); } -- cgit v1.2.3