diff options
author | Jim Jagielski <jim@apache.org> | 2000-03-13 21:27:29 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2000-03-13 21:27:29 +0100 |
commit | 70ef1e69d59b6a1db04870c4f0edeec730cd5ea4 (patch) | |
tree | 2d2b886ae7df8d230e5853a09d07d223208bff14 /include | |
parent | Update the version string to reflect that we are currently working on (diff) | |
download | apache2-70ef1e69d59b6a1db04870c4f0edeec730cd5ea4.tar.xz apache2-70ef1e69d59b6a1db04870c4f0edeec730cd5ea4.zip |
Backport the CSS security fixes to Apache 2.0a. Or is that forward
port? My sense of direction is all confused.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84751 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/http_core.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/http_core.h b/include/http_core.h index b3364756f3..efdcc1c51e 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -245,6 +245,15 @@ typedef struct { */ unsigned d_is_fnmatch : 1; + /* should we force a charset on any outgoing parameterless content-type? + * if so, which charset? + */ +#define ADD_DEFAULT_CHARSET_OFF (0) +#define ADD_DEFAULT_CHARSET_ON (1) +#define ADD_DEFAULT_CHARSET_UNSET (2) + unsigned add_default_charset : 2; + char *add_default_charset_name; + unsigned long limit_req_body; /* limit on bytes in request msg body */ /* logging options */ |