diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-06-21 12:56:33 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-06-21 12:56:33 +0000 |
commit | d9226a1dd0e0644334adecbfa9ab4b76969610fa (patch) | |
tree | c0ecaf03d16d38a4a97b2266555f7147093f0bf0 /ext/soap/php_http.h | |
parent | 1fb65c4c29d87e4a448aaf4e7d36069be0bedc2e (diff) | |
download | php-git-d9226a1dd0e0644334adecbfa9ab4b76969610fa.tar.gz |
Support for HTTP redirection.
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 |