Changeset 224 for draft-ietf-httpbis/02/draft-ietf-httpbis-p6-cache-02.txt
- Timestamp:
- 24/02/08 11:25:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/02/draft-ietf-httpbis-p6-cache-02.txt
r219 r224 1545 1545 directive for a specific cache. 1546 1546 1547 Cache-Control = "Cache-Control" ":" 1#cache-directive1548 1549 cache-directive = cache-request-directive1550 1551 1552 cache-request-directive =1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 cache-response-directive =1563 1564 1565 | "no-cache" [ "=" DQUOTE 1#field-name DQUOTE ]; Section 16.2.11566 1567 1568 1569 1570 1571 1572 1573 1574 cache-extension = token [ "=" ( token | quoted-string ) ]1547 Cache-Control = "Cache-Control" ":" 1#cache-directive 1548 1549 cache-directive = cache-request-directive 1550 | cache-response-directive 1551 1552 cache-request-directive = 1553 "no-cache" ; Section 16.2.1 1554 | "no-store" ; Section 16.2.2 1555 | "max-age" "=" delta-seconds ; Section 16.2.3, 16.2.4 1556 | "max-stale" [ "=" delta-seconds ] ; Section 16.2.3 1557 | "min-fresh" "=" delta-seconds ; Section 16.2.3 1558 | "no-transform" ; Section 16.2.5 1559 | "only-if-cached" ; Section 16.2.4 1560 | cache-extension ; Section 16.2.6 1561 1562 cache-response-directive = 1563 "public" ; Section 16.2.1 1564 | "private" [ "=" DQUOTE 1#field-name DQUOTE ] ; Section 16.2.1 1565 | "no-cache" [ "=" DQUOTE 1#field-name DQUOTE ] ; Section 16.2.1 1566 | "no-store" ; Section 16.2.2 1567 | "no-transform" ; Section 16.2.5 1568 | "must-revalidate" ; Section 16.2.4 1569 | "proxy-revalidate" ; Section 16.2.4 1570 | "max-age" "=" delta-seconds ; Section 16.2.3 1571 | "s-maxage" "=" delta-seconds ; Section 16.2.3 1572 | cache-extension ; Section 16.2.6 1573 1574 cache-extension = token [ "=" ( token | quoted-string ) ] 1575 1575 1576 1576 When a directive appears without any 1#field-name parameter, the
Note: See TracChangeset
for help on using the changeset viewer.