diff options
Diffstat (limited to 'ext/soap/php_http.h')
| -rw-r--r-- | ext/soap/php_http.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/soap/php_http.h b/ext/soap/php_http.h index 5aede13270..fc055a144a 100644 --- a/ext/soap/php_http.h +++ b/ext/soap/php_http.h @@ -22,7 +22,13 @@ #ifndef PHP_HTTP_H #define PHP_HTTP_H -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); +int make_http_soap_request(zval *this_ptr, + char *request, + int request_size, + char *location, + char *soapaction, + int soap_version, + char **response, + int *response_len TSRMLS_DC); #endif |
