From 76ea16a6cb2e321330d27580f76984eb70f005a7 Mon Sep 17 00:00:00 2001 From: theli Date: Sat, 22 Apr 2006 15:00:35 +0000 Subject: [PATCH] *) Removing Keep-Alive header (is also a hopByHop header) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2034 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/http/httpdProxyHandler.java | 1 + 1 file changed, 1 insertion(+) diff --git a/source/de/anomic/http/httpdProxyHandler.java b/source/de/anomic/http/httpdProxyHandler.java index dd6eee2a1..3f54f4442 100644 --- a/source/de/anomic/http/httpdProxyHandler.java +++ b/source/de/anomic/http/httpdProxyHandler.java @@ -846,6 +846,7 @@ public final class httpdProxyHandler extends httpdAbstractHandler implements htt */ headers.remove(httpHeader.CONNECTION); + headers.remove(httpHeader.KEEP_ALIVE); headers.remove(httpHeader.PROXY_CONNECTION); headers.remove(httpHeader.PROXY_AUTHENTICATE); headers.remove(httpHeader.PROXY_AUTHORIZATION);