diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-05-20 16:55:03 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-05-20 16:55:03 +0000 |
commit | 38ef28e41b9c57e826d6d494cd9ebbcbfcc9e13e (patch) | |
tree | f8bc70ad0ca26c92b7b9ca83deebb611802ed9aa /ext/soap/php_http.h | |
parent | af2aa721dfc2e5065e7764d54fb687381342b29b (diff) | |
download | php-git-38ef28e41b9c57e826d6d494cd9ebbcbfcc9e13e.tar.gz |
Allowing user defined SOAP transports with SoapClient::__doRequest()
Diffstat (limited to 'ext/soap/php_http.h')
-rw-r--r-- | ext/soap/php_http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_http.h b/ext/soap/php_http.h index 44b6a64e78..5aede13270 100644 --- a/ext/soap/php_http.h +++ b/ext/soap/php_http.h @@ -22,7 +22,7 @@ #ifndef PHP_HTTP_H #define PHP_HTTP_H -int send_http_soap_request(zval *this_ptr, xmlDoc *doc, char *location, char *soapaction, int soap_version TSRMLS_DC); +int send_http_soap_request(zval *this_ptr, char *request, int request_size, char *location, char *soapaction, int soap_version TSRMLS_DC); int get_http_soap_response(zval *this_ptr, char **buffer, int *buffer_len TSRMLS_DC); #endif |