/*
- * $Id: client_side.cc,v 1.281 1998/04/21 21:28:13 rousskov Exp $
+ * $Id: client_side.cc,v 1.282 1998/04/21 21:33:20 wessels Exp $
*
* DEBUG: section 33 Client-side Routines
* AUTHOR: Duane Wessels
*/
ch.src_addr = http->conn->peer.sin_addr;
ch.request = http->request;
- /* aclCheckFast returns 0 if there is a match with "no_cache deny" acl */
+ /*
+ * aclCheckFast returns 1 for ALLOW and 0 for DENY. The default
+ * is ALLOW, so we require 'no_cache DENY foo' in squid.conf
+ * to indicate uncachable objects.
+ */
if (!aclCheckFast(Config.accessList.noCache, &ch))
return 0;
if (Config.cache_stop_relist)