Files
Pascal Obry 1a9de27ce8 Add structured support for Cache_Control header.
The cache control header value was represented as a string. Contructing
and parsing this header was user's job. This patch set adds a structured
record (Cache_Data) for handling request and response cache control data.

Parsing an incoming cache control string is now supported by the routine
Status.Cache_Control.
--
For J727-032.
2010-08-05 16:59:15 +00:00

15 lines
352 B
Plaintext

>>>>> /get
Cache-Control: no-cache, max-stale=3
>>>>> /head
Cache-Control: min-fresh=12, only-if-cached
>>>>> /post
Cache-Control: min-fresh=12, only-if-cached
Cache Option Header : ''
Cache Option Header : 'no-cache, max-age=0, s-maxage=0'
Cache Option Header : 'no-store'
Cache Option Header : 'no-cache, no-store, max-age=0, s-maxage=0'
shutdown