summaryrefslogtreecommitdiff
path: root/sapi/isapi/php4isapi.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-12-22 03:11:46 +0000
committerZeev Suraski <zeev@php.net>2001-12-22 03:11:46 +0000
commitc8315794f1fb18049267ebee1603a747e826e274 (patch)
tree0841fa9a35d1884bf93019d573fc6ae96fb2ec45 /sapi/isapi/php4isapi.c
parent431c793e0c2912d089b1987806d14e0b3343879f (diff)
downloadphp-git-c8315794f1fb18049267ebee1603a747e826e274.tar.gz
Fix incompatibility with Windows .NET (IIS 6)
May also improve stability under other Windows versions
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r--sapi/isapi/php4isapi.c1
1 files changed, 1 insertions, 0 deletions
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);