diff options
Diffstat (limited to 'ext/soap/php_http.h')
-rw-r--r-- | ext/soap/php_http.h | 9 |
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 |