From: Garri Djavadyan Date: Wed, 30 Nov 2016 22:33:32 +0000 (+1300) Subject: Bug 3533: Cache still valid after HTTP/1.1 303 See Other X-Git-Tag: SQUID_3_5_23~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=935d96dae8d655ca6113769ebeff4618df4688b1;p=thirdparty%2Fsquid.git Bug 3533: Cache still valid after HTTP/1.1 303 See Other RFC7231 does not mention 303 response as non-cacheable. So, assuming that means it *is* cacheable. --- diff --git a/src/http.cc b/src/http.cc index 06bbf0ecf5..59dd308c9f 100644 --- a/src/http.cc +++ b/src/http.cc @@ -203,6 +203,8 @@ httpMaybeRemovePublic(StoreEntry * e, Http::StatusCode status) case Http::scFound: + case Http::scSeeOther: + case Http::scGone: case Http::scNotFound: