Searched defs:ct (Results 1 - 7 of 7) sorted by relevance

/httpd/modules/filters/
H A Dregexp.c396 int ct; local
524 ct = vars->braelist[epint] - bbeg;
527 if (ecmp(bbeg, lp, ct)) {
528 lp += ct;
536 ct = vars->braelist[epint] - bbeg;
539 while (ecmp(bbeg, lp, ct))
540 lp += ct;
545 lp -= ct;
/httpd/server/
H A Dapreq_parser_multipart.c224 char *ct = apr_pstrdup(pool, content_type); local
226 ct = strchr(ct, ';');
227 if (ct == NULL)
230 *ct++ = 0;
231 s = apreq_header_attribute(ct, "boundary", 8,
371 const char *cd, *ct, *name, *filename; local
399 ct = apr_table_get(ctx->info, "Content-Type");
401 if (ct != NULL && strncmp(ct, "multipar
[all...]
H A Dutil.c2593 const char *ct; local
2606 ct = apr_table_get(r->headers_in, "Content-Type");
2607 if (!ct || strncasecmp("application/x-www-form-urlencoded", ct, 33)) {
/httpd/modules/http/
H A Dbyterange_filter.c85 const char *ct; local
114 if ((ct = apr_table_get(r->headers_out, "Content-Type"))
115 && strncasecmp(ct, "multipart/byteranges", 20) == 0) {
H A Dhttp_protocol.c1067 AP_DECLARE(void) ap_set_content_type(request_rec *r, const char *ct) argument
1069 if (!ct) {
1072 else if (!r->content_type || strcmp(r->content_type, ct)) {
1073 r->content_type = ct;
H A Dmod_mime.c460 const char *ll = l, *ct; local
465 ct = ap_getword_conf(p, &ll);
470 apr_hash_set(mime_type_extensions, ext, APR_HASH_KEY_STRING, ct);
/httpd/modules/cache/
H A Dmod_cache.c667 const char *ct = apr_table_get(cache->handle->resp_hdrs, "Content-Type"); local
668 if (ct) {
669 ap_set_content_type(r, ct);

Completed in 48 milliseconds