Searched defs:allowed (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/aaa/ |
H A D | mod_allowmethods.c | 40 * Non-matching methods will be returned a status 405 (method not allowed) 48 apr_int64_t allowed; member in struct:am_conf_t 60 if (!conf || conf->allowed == 0) { 64 r->allowed = conf->allowed; 66 if (conf->allowed & (AP_METHOD_BIT << method)) { 83 conf->allowed = 0; 95 conf->allowed = add->allowed; 99 conf->allowed [all...] |
H A D | mod_authz_core.c | 1010 const apr_int64_t *allowed = parsed_require_line; local 1011 if (*allowed & (AP_METHOD_BIT << r->method_number)) 1021 apr_int64_t *allowed = apr_pcalloc(cmd->pool, sizeof(apr_int64_t)); local 1031 *allowed |= (AP_METHOD_BIT << m); 1034 *parsed_require_line = allowed;
|
/httpd/modules/proxy/ |
H A D | mod_proxy_balancer.c | 935 const char *allowed[], apr_pool_t *p) 957 if (allowed == NULL) { /* allow all */ 961 const char **ok = allowed; 1001 r->allowed = 0 1028 const char *allowed[] = { "w", "b", "nonce", "xml", NULL }; local 1031 push2table(r->args, params, allowed, r->pool); 934 push2table(const char *input, apr_table_t *params, const char *allowed[], apr_pool_t *p) argument
|
H A D | proxy_util.c | 224 char *allowed; /* characters which should not be encoded */ local 236 allowed = "~$-_.+!*'(),;:@&="; 239 allowed = "$-_.!*'(),;:@&="; 242 allowed = "$-_.+!*'(),;@&="; 245 allowed = "$-_.+!*'(),?:@&="; 248 allowed = "$-_.+!*'(),?/:@&="; 287 if (!apr_isalnum(ch) && !strchr(allowed, ch)) { 3367 * According to RFC 2616 8.2.3 we are not allowed to forward an
|
/httpd/include/ |
H A D | httpd.h | 214 /* ------------------ stuff that modules are allowed to look at ----------- */ 733 /** the overrides allowed for the .htaccess file */ 735 /** the override options allowed for the .htaccess file */ 737 /** Table of allowed directives for override */ 847 * 'allowed' is a bitvector of the allowed methods. 852 * handler like this the handler should set r->allowed to the list 858 * usually decline to deal with OPTIONS. TRACE is always allowed, 866 apr_int64_t allowed; member in struct:request_rec 869 /** List of allowed method [all...] |
Completed in 38 milliseconds