2004-01-29 17:27:06 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 21:10:10 +08:00
|
|
|
| Copyright (c) 1997-2006 The PHP Group |
|
2004-01-29 17:27:06 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 21:10:10 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2004-01-29 17:27:06 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 21:10:10 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2004-01-29 17:27:06 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-29 19:51:11 +08:00
|
|
|
| Authors: Brad Lafountain <rodif_bl@yahoo.com> |
|
|
|
|
| Shane Caraveo <shane@caraveo.com> |
|
|
|
|
| Dmitry Stogov <dmitry@zend.com> |
|
2004-01-29 17:27:06 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
|
2002-07-08 07:03:43 +08:00
|
|
|
#ifndef PHP_HTTP_H
|
|
|
|
#define PHP_HTTP_H
|
|
|
|
|
2004-06-21 20:56:33 +08:00
|
|
|
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);
|
2002-07-08 07:03:43 +08:00
|
|
|
|
2005-07-08 17:36:28 +08:00
|
|
|
void proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
|
|
|
|
void basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
|
2002-07-08 07:03:43 +08:00
|
|
|
#endif
|