You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2010/10/19 01:57:13 UTC

DO NOT REPLY [Bug 16133] validation of no-cache responses with Expires header

https://issues.apache.org/bugzilla/show_bug.cgi?id=16133

Graham Leggett <mi...@sharp.fm> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |FixedInTrunk

--- Comment #16 from Graham Leggett <mi...@sharp.fm> 2010-10-18 19:57:10 EDT ---
httpd-trunk now respects the no-cache response header in cached responses and
revalidates every time (not-fresh), and supports no-cache-with-header as well:

    /* These come from the cached entity. */
    if (h->cache_obj->info.control.no_cache
            || h->cache_obj->info.control.no_cache_header
            || h->cache_obj->info.control.private_header) {
        /*
         * The cached entity contained Cache-Control: no-cache, or a
         * no-cache with a header present, or a private with a header
         * present, so treat as stale causing revalidation.
         */
        return 0;
    }

Would it be possible to retest trunk to see if this issue is indeed fixed?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org