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

/httpd/test/
H A Dtest_parser.c61 const char *field; local
69 field = instr;
70 while ((newstr = ap_get_list_item(p, &field)) != NULL)
/httpd/modules/lua/
H A Dlua_vmprep.c261 * field -> "path" or "cpath"
269 const char *field,
283 lua_getfield(L, -1, field);
292 lua_setfield(L, -3, field);
293 lua_getfield(L, -2, field);
303 lua_setfield(L, -2, field);
268 munge_path(lua_State *L, const char *field, const char *sub_pat, const char *rep_pat, apr_pool_t *pool, apr_array_header_t *paths, const char *file) argument
/httpd/modules/generators/
H A Dmod_info.c108 static void put_int_flush_right(request_rec * r, int i, int field) argument
110 if (field > 1 || i > 9)
111 put_int_flush_right(r, i / 10, field - 1);
/httpd/modules/http/
H A Dhttp_filters.c279 * Section 3.3.3.3: "If a Transfer-Encoding header field is
637 /* Send a single HTTP header field to the client. Note that this function
673 * the passed field values into a single array that will be further
675 * and recombine multiple Vary fields, though it is generic to any field
771 /* For each field, generate
1186 * header field tables into a single table. If we don't do this, our
1204 * Remove the 'Vary' header field if the client can't handle it.
1221 * Now remove any ETag response header field if earlier processing
1251 const char *field = apr_table_get(r->headers_out, "Content-Language"); local
1253 while (field
[all...]
/httpd/server/
H A Dprotocol.c741 apr_pstrcat(r->pool, "Size of a request header field "
751 /* get the length of the field name for logging, but no more than 80 bytes */
753 static int field_name_len(const char *field) argument
755 const char *end = ap_strchr_c(field, ':');
756 if (end == NULL || end - field > LOG_NAME_MAX_LEN)
758 return end - field;
766 char *field; local
781 field = NULL;
782 rv = ap_rgetline(&field, r->server->limit_req_fieldsize + 2,
795 * exceeds the configured limit for a field siz
[all...]
H A Dutil.c102 * Examine a field value (such as a media-/content-type) string and return
1142 /* Size an HTTP header field list item, as separated by a comma.
1145 * of field is shifted to the next non-comma, non-whitespace character.
1148 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len) argument
1150 const unsigned char *ptr = (const unsigned char *)*field;
1189 *field = (const char *)ptr;
1193 /* Advance field pointer to the next non-comma, non-white byte */
1198 *field = (const char *)ptr;
1202 /* Retrieve an HTTP header field list item, as separated by a comma,
1206 * field i
1208 ap_get_list_item(apr_pool_t *p, const char **field) argument
[all...]
/httpd/modules/proxy/
H A Dmod_proxy_http.c1149 char field[MAX_STRING_LEN]; local
1239 while ((len = ap_getline(field, MAX_STRING_LEN, rr, 1))

Completed in 34 milliseconds