From: rousskov <> Date: Wed, 3 Jun 1998 03:46:02 +0000 (+0000) Subject: - honor no-store cc directive X-Git-Tag: SQUID_3_0_PRE1~3196 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed2f05a1df779a3805245734010535b8d803be56;p=thirdparty%2Fsquid.git - honor no-store cc directive --- diff --git a/src/http.cc b/src/http.cc index eb24b1bbd9..ed7e7a0cee 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.279 1998/06/02 21:38:09 rousskov Exp $ + * $Id: http.cc,v 1.280 1998/06/02 21:46:02 rousskov Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -218,6 +218,8 @@ httpCachableReply(HttpStateData * httpState) return 0; if (EBIT_TEST(cc_mask, CC_NO_CACHE)) return 0; + if (EBIT_TEST(cc_mask, CC_NO_STORE)) + return 0; if (EBIT_TEST(httpState->request->flags, REQ_AUTH)) if (!EBIT_TEST(cc_mask, CC_PROXY_REVALIDATE)) return 0;