diff options
author | Stefan Fritsch <sf@apache.org> | 2010-11-18 21:15:24 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-11-18 21:15:24 +0100 |
commit | 39db8e5413ae95e9216c6da95b35c5f2ce5846b6 (patch) | |
tree | 1d3ac6c55ae191ad7f9b2644a7e3c6d9605e81bb /include/http_config.h | |
parent | ./build.sh all (diff) | |
download | apache2-39db8e5413ae95e9216c6da95b35c5f2ce5846b6.tar.xz apache2-39db8e5413ae95e9216c6da95b35c5f2ce5846b6.zip |
mod_proxy: Fix ProxyPassInterpolateEnv directive.
PR: 50292
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1036602 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_config.h')
-rw-r--r-- | include/http_config.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/http_config.h b/include/http_config.h index 47a90cc546..66f73bac7c 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -640,7 +640,7 @@ AP_DECLARE_NONSTD(const char *) ap_set_string_slot_lower(cmd_parms *cmd, void *struct_ptr, const char *arg); /** - * Generic command handling function for flags + * Generic command handling function for flags stored in an int * @param cmd The command parameters for this directive * @param struct_ptr pointer into a given type * @param arg The argument to the directive (either 1 or 0) @@ -650,6 +650,16 @@ AP_DECLARE_NONSTD(const char *) ap_set_flag_slot(cmd_parms *cmd, void *struct_ptr, int arg); /** + * Generic command handling function for flags stored in a char + * @param cmd The command parameters for this directive + * @param struct_ptr pointer into a given type + * @param arg The argument to the directive (either 1 or 0) + * @return An error string or NULL on success + */ +AP_DECLARE_NONSTD(const char *) ap_set_flag_slot_char(cmd_parms *cmd, + void *struct_ptr, + int arg); +/** * Generic command handling function for files * @param cmd The command parameters for this directive * @param struct_ptr pointer into a given type |