Searched defs:intype (Results 1 - 2 of 2) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_ext_filter.c | 51 const char *intype; /* list of IMTs we process (well, just one for now) */ member in struct:ef_filter_t 295 if (!strncasecmp(args, "intype=", 7)) { 297 filter->intype = ap_getword_white(cmd->pool, &args); 527 const char *intype_str = !filter->intype ? 528 "*/*" : filter->intype; 573 if (ctx->filter->intype && 574 ctx->filter->intype != INTYPE_ALL) { 587 if (strcasecmp(ctx->filter->intype, ctype)) {
|
/httpd/server/ |
H A D | util.c | 105 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype) argument 109 if (intype == NULL) return NULL; 111 semi = ap_strchr_c(intype, ';'); 113 return apr_pstrdup(p, intype); 116 while ((semi > intype) && apr_isspace(semi[-1])) { 119 return apr_pstrmemdup(p, intype, semi - intype);
|
Completed in 20 milliseconds