diff options
Diffstat (limited to 'WWW/Library/Implementation/HTAnchor.h')
-rw-r--r-- | WWW/Library/Implementation/HTAnchor.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/HTAnchor.h b/WWW/Library/Implementation/HTAnchor.h index 22a9c323..b7d4f760 100644 --- a/WWW/Library/Implementation/HTAnchor.h +++ b/WWW/Library/Implementation/HTAnchor.h @@ -100,6 +100,10 @@ struct _HTParentAnchor { char *cache_control; /* Cache-Control */ BOOL no_cache; /* Cache-Control, Pragma or META "no-cache"? */ BOOL inBASE; /* duplicated from HTStructured (HTML.c/h) */ +#ifdef EXP_HTTP_HEADERS + HTChunk http_headers; +#endif + char *content_type_params; /* Content-Type (with parameters if any) */ char *content_type; /* Content-Type */ char *content_language; /* Content-Language */ char *content_encoding; /* Compression algorithm */ @@ -284,6 +288,14 @@ extern void HTAnchor_setCitehost(HTParentAnchor *me, */ extern const char *HTAnchor_SugFname(HTParentAnchor *me); +/* HTTP Headers. +*/ +extern const char *HTAnchor_http_headers(HTParentAnchor *me); + +/* Content-Type handling (parameter list). +*/ +extern const char *HTAnchor_content_type_params(HTParentAnchor *me); + /* Content-Type handling. - FM */ extern const char *HTAnchor_content_type(HTParentAnchor *me); |