Home
last modified time | relevance | path

Searched refs:MAX_STATUS_LENGTH (Results 1 – 2 of 2) sorted by relevance

/PHP-5.5/sapi/isapi/
H A Dphp5isapi.c60 #define MAX_STATUS_LENGTH sizeof("xxxx LONGEST POSSIBLE STATUS DESCRIPTION") macro
287 if ((sline_len - 9) > MAX_STATUS_LENGTH) { in sapi_isapi_send_headers()
288 status_buf = estrndup(sline + 9, MAX_STATUS_LENGTH); in sapi_isapi_send_headers()
293 status_buf = emalloc(MAX_STATUS_LENGTH + 1); in sapi_isapi_send_headers()
294 snprintf(status_buf, MAX_STATUS_LENGTH, "%d Undescribed", SG(sapi_headers).http_response_code); in sapi_isapi_send_headers()
/PHP-5.5/sapi/apache/
H A Dmod_php5.c66 #define MAX_STATUS_LENGTH sizeof("xxxx LONGEST POSSIBLE STATUS DESCRIPTION") macro
236 if ((sline_len - 9) > MAX_STATUS_LENGTH) { in sapi_apache_send_headers()
237 r->status_line = ap_pstrndup(r->pool, sline + 9, MAX_STATUS_LENGTH); in sapi_apache_send_headers()

Completed in 11 milliseconds