Searched refs:accepts (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/mappers/
H A Dmod_negotiation.c189 * if the client actually accepts this media type at that
257 apr_array_header_t *accepts; /* accept_recs */ member in struct:__anon234
580 new->accepts = do_header_line(r->pool, apr_table_get(hdrs, "Accept"));
583 if (new->accepts) {
584 elts = (accept_rec *) new->accepts->elts;
586 for (i = 0; i < new->accepts->nelts; ++i) {
708 if (!neg->accepts) {
709 neg->accepts = apr_array_make(neg->pool, 4, sizeof(accept_rec));
711 new_accept = (accept_rec *) apr_array_push(neg->accepts);
718 new_accept = (accept_rec *) apr_array_push(neg->accepts);
[all...]
/httpd/modules/filters/
H A Dmod_deflate.c321 return "DeflateAlterETAG accepts only 'NoChange', 'AddSuffix', and 'Remove'";
738 const char *accepts; local
740 accepts = apr_table_get(r->headers_in, "Accept-Encoding");
741 if (accepts == NULL) {
746 token = ap_get_token(r->pool, &accepts, 0);
749 while (*accepts == ';') {
750 ++accepts;
751 ap_get_token(r->pool, &accepts, 1);
755 if (*accepts == ',') {
756 ++accepts;
[all...]

Completed in 507 milliseconds