From c8315794f1fb18049267ebee1603a747e826e274 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sat, 22 Dec 2001 03:11:46 +0000 Subject: [PATCH] Fix incompatibility with Windows .NET (IIS 6) May also improve stability under other Windows versions --- sapi/isapi/php4isapi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 0f768e1227..709fafcfc5 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -284,6 +284,7 @@ static int sapi_isapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC) header_info.cchStatus = strlen(header_info.pszStatus); header_info.pszHeader = combined_headers; header_info.cchHeader = total_length; + header_info.fKeepConn = FALSE; lpECB->dwHttpStatusCode = SG(sapi_headers).http_response_code; lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_SEND_RESPONSE_HEADER_EX, &header_info, NULL, NULL); -- 2.40.0