summaryrefslogtreecommitdiff
path: root/ext/soap/php_http.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2012-03-21 16:32:49 +0400
committerDmitry Stogov <dmitry@zend.com>2012-03-21 16:32:49 +0400
commit657547f8c4758efcf85c73fec6d7fd8b3983d7cb (patch)
treea4c95b1c667afdd01ab9dabeb7619570bf0b7234 /ext/soap/php_http.h
parent944e622821ebd8ab62bcb3513f6b9e7bcc998b04 (diff)
downloadphp-git-657547f8c4758efcf85c73fec6d7fd8b3983d7cb.tar.gz
Fixed bug #49853 (Soap Client stream context header option ignored)
Diffstat (limited to 'ext/soap/php_http.h')
-rw-r--r--ext/soap/php_http.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/soap/php_http.h b/ext/soap/php_http.h
index 2cab5c06c9..540a91708a 100644
--- a/ext/soap/php_http.h
+++ b/ext/soap/php_http.h
@@ -31,6 +31,11 @@ int make_http_soap_request(zval *this_ptr,
char **response,
int *response_len TSRMLS_DC);
-void proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
-void basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
+int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
+int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
+void http_context_headers(php_stream_context* context,
+ zend_bool has_authorization,
+ zend_bool has_proxy_authorization,
+ zend_bool has_cookies,
+ smart_str* soap_headers TSRMLS_DC);
#endif