Searched defs:ctype (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_xml2enc.c | 24 #include <ctype.h> 173 const char* ctype = r->content_type; local 175 if (ctype) { 177 "Content-Type is %s", ctype) ; 180 if (ctype && (p = ap_strcasestr(ctype, "charset=") , p != NULL)) { 270 if (ctype && ctx->encoding) { 271 if (ap_regexec(seek_charset, ctype, 2, match, 0)) { 272 r->content_type = apr_pstrcat(r->pool, ctype, ";charset=utf-8", 306 char *ctype; local [all...] |
H A D | mod_ext_filter.c | 585 const char *ctype = ap_getword(f->r->pool, &ctypes, ';'); local 587 if (strcasecmp(ctx->filter->intype, ctype)) {
|
/httpd/modules/cache/ |
H A D | cache_util.c | 1279 const char *ctype = ap_make_content_type(r, r->content_type); local 1280 if (ctype) { 1281 apr_table_setn(headers_out, "Content-Type", ctype);
|
/httpd/modules/http/ |
H A D | http_filters.c | 1136 const char *ctype; local 1237 ctype = ap_make_content_type(r, r->content_type); 1238 if (ctype) { 1239 apr_table_setn(r->headers_out, "Content-Type", ctype);
|
/httpd/modules/generators/ |
H A D | mod_autoindex.c | 145 char *ctype; member in struct:autoindex_config_struct 157 char *ctype = ap_field_noparam(r->pool, r->content_type); local 158 ap_str_tolower(ctype); 159 return !strcmp(ctype, "text/html") 160 || !strcmp(ctype, "application/xhtml+xml"); 495 d_cfg->ctype = apr_pstrdup(cmd->pool, &w[5]); 657 new->ctype = add->ctype ? add->ctype : base->ctype; 2022 char *ctype = "text/html"; local [all...] |
Completed in 31 milliseconds