1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef PHP_HTTP_H
- #define PHP_HTTP_H
- 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);
- 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
|