From 34bb8d8119e6bcbcc08f46e6bbc34d1e790f3e65 Mon Sep 17 00:00:00 2001 From: Pierrick Charron Date: Fri, 18 Nov 2011 13:24:35 +0000 Subject: Added new SoapClient option "keep_alive". FR #60329 --- ext/soap/php_http.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ext/soap/php_http.c') diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 1ca0a1610b..e79c537992 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -433,12 +433,14 @@ try_again: smart_str_appendc(&soap_headers, ':'); smart_str_append_unsigned(&soap_headers, phpurl->port); } - if (http_1_1) { + if (!http_1_1 || + (zend_hash_find(Z_OBJPROP_P(this_ptr), "_keep_alive", sizeof("_keep_alive"), (void **)&tmp) == SUCCESS && + Z_LVAL_PP(tmp) == 0)) { smart_str_append_const(&soap_headers, "\r\n" - "Connection: Keep-Alive\r\n"); + "Connection: close\r\n"); } else { smart_str_append_const(&soap_headers, "\r\n" - "Connection: close\r\n"); + "Connection: Keep-Alive\r\n"); } if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_user_agent", sizeof("_user_agent"), (void **)&tmp) == SUCCESS && Z_TYPE_PP(tmp) == IS_STRING) { -- cgit v1.2.1