1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef PHP_HTTP_H
- #define PHP_HTTP_H
- int make_http_soap_request(zval *this_ptr,
- zend_string *request,
- char *location,
- char *soapaction,
- int soap_version,
- zval *response);
- int proxy_authentication(zval* this_ptr, smart_str* soap_headers);
- int basic_authentication(zval* this_ptr, smart_str* soap_headers);
- 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);
- #endif
|