From 507827a05280319f6bf0c92cc3134c52ba83c60d Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Thu, 15 Apr 2010 18:18:30 +1200 Subject: [PATCH] Don't report Connection: and Keep-alive: headers. --- testing/normalise_result | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/testing/normalise_result b/testing/normalise_result index f3c755fa..b6cc8276 100755 --- a/testing/normalise_result +++ b/testing/normalise_result @@ -21,6 +21,14 @@ while( ) { $_ = ""; }; + /^Keep-Alive:/ && do { + $_ = ""; + }; + + /^Connection:/ && do { + $_ = ""; + }; + /^Vary: / && do { $_ = ""; };