From ce7edc9b3c7370f32fec0bc7a8ec3e29ed9a5f61 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Wed, 25 Mar 2009 00:34:59 -0400 Subject: Imported Upstream version 5.1.1 --- sapi/tux/php_tux.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sapi/tux/php_tux.c') diff --git a/sapi/tux/php_tux.c b/sapi/tux/php_tux.c index 5d5afd30b..64deff46a 100644 --- a/sapi/tux/php_tux.c +++ b/sapi/tux/php_tux.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2004 The PHP Group | + | Copyright (c) 1997-2005 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.0 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -287,6 +287,7 @@ static sapi_module_struct tux_sapi_module = { sapi_tux_register_variables, NULL, /* Log message */ + NULL, /* Get request time */ STANDARD_SAPI_MODULE_PROPERTIES }; @@ -335,6 +336,8 @@ static void tux_request_ctor(TSRMLS_D) smart_str_0(&s); SG(request_info).request_uri = s.c; SG(request_info).request_method = CGI_REQUEST_METHOD(TG(req)); + if(TG(req)->http_version == HTTP_1_1) SG(request_info).proto_num = 1001; + else SG(request_info).proto_num = 1000; SG(sapi_headers).http_response_code = 200; SG(request_info).content_type = TG(req)->content_type; SG(request_info).content_length = 0; /* TG(req)->contentlength; */ -- cgit v1.2.3