Lines Matching refs:header_info
247 HSE_SEND_HEADER_EX_INFO header_info; in sapi_isapi_send_headers() local
272 header_info.pszStatus = "200 OK"; in sapi_isapi_send_headers()
275 header_info.pszStatus = "302 Moved Temporarily"; in sapi_isapi_send_headers()
278 header_info.pszStatus = "401 Authorization Required"; in sapi_isapi_send_headers()
296 header_info.pszStatus = status_buf; in sapi_isapi_send_headers()
300 header_info.cchStatus = strlen(header_info.pszStatus); in sapi_isapi_send_headers()
301 header_info.pszHeader = combined_headers; in sapi_isapi_send_headers()
302 header_info.cchHeader = total_length; in sapi_isapi_send_headers()
303 header_info.fKeepConn = FALSE; in sapi_isapi_send_headers()
306 …lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_SEND_RESPONSE_HEADER_EX, &header_info, NULL, N… in sapi_isapi_send_headers()
785 HSE_SEND_HEADER_EX_INFO header_info; in php_isapi_report_exception() local
788 header_info.pszStatus = "500 Internal Server Error"; in php_isapi_report_exception()
789 header_info.cchStatus = strlen(header_info.pszStatus); in php_isapi_report_exception()
790 header_info.pszHeader = "Content-Type: text/html\r\n\r\n"; in php_isapi_report_exception()
791 header_info.cchHeader = strlen(header_info.pszHeader); in php_isapi_report_exception()
794 …lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_SEND_RESPONSE_HEADER_EX, &header_info, NULL, N… in php_isapi_report_exception()