mirror of
https://github.com/AdaCore/aws.git
synced 2026-02-12 12:29:46 -08:00
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.
15 lines
352 B
Plaintext
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
|