Searched defs:custom_response (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/http/
H A Dhttp_request.c78 char *custom_response; local
144 custom_response = NULL; /* Do NOT retry the custom thing! */
148 custom_response = ap_response_code_string(r, error_index);
176 if (custom_response && custom_response[0] != '"') {
178 if (ap_is_url(custom_response)) {
186 apr_table_setn(r->headers_out, "Location", custom_response);
188 else if (custom_response[0] == '/') {
209 ap_internal_redirect(custom_response, r);
220 custom_response);
[all...]
H A Dhttp_protocol.c1374 char *custom_response; local
1461 if ((custom_response = ap_response_code_string(r, idx))) {
1466 * for any reason, the custom_response will still hold the
1478 if (custom_response[0] == '\"') {
1479 ap_rputs(custom_response + 1, r);

Completed in 1132 milliseconds