diff options
author | Zeev Suraski <zeev@php.net> | 2001-12-22 03:11:46 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-12-22 03:11:46 +0000 |
commit | c8315794f1fb18049267ebee1603a747e826e274 (patch) | |
tree | 0841fa9a35d1884bf93019d573fc6ae96fb2ec45 /sapi/isapi/php4isapi.c | |
parent | 431c793e0c2912d089b1987806d14e0b3343879f (diff) | |
download | php-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.c | 1 |
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); |