diff options
author | Ken Coar <coar@apache.org> | 2000-08-12 01:53:29 +0200 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2000-08-12 01:53:29 +0200 |
commit | 1d9541fe02af5c76590a018ed6865e262bad9604 (patch) | |
tree | d8b874b68eddf305ee8df27d15b31c4db2da2fdb /include | |
parent | Note the connexion between the method number list and the (diff) | |
download | apache2-1d9541fe02af5c76590a018ed6865e262bad9604.tar.xz apache2-1d9541fe02af5c76590a018ed6865e262bad9604.zip |
Add mnemonics for the ap_allow_methods() reset flag meanings.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86056 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/http_request.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/http_request.h b/include/http_request.h index 803eb15c95..9d08d7c6d8 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -123,6 +123,10 @@ API_EXPORT(void) ap_update_mtime(request_rec *r, apr_time_t dependency_mtime); * @deffunc void ap_allow_methods(request_rec *r, int reset, ...) */ API_EXPORT(void) ap_allow_methods(request_rec *r, int reset, ...); + +#define MERGE_ALLOW 0 +#define REPLACE_ALLOW 1 + #ifdef CORE_PRIVATE /* Function called by main.c to handle first-level request */ void ap_process_request(request_rec *); |