Searched refs:intype (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/filters/
H A Dmod_ext_filter.c51 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 Dutil.c105 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);
/httpd/include/
H A Dhttpd.h1421 * @param intype The field to examine
1424 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype);

Completed in 28 milliseconds