summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-02-02 11:41:45 +0000
committerDmitry Stogov <dmitry@php.net>2006-02-02 11:41:45 +0000
commit7dc9be77fc5532c3e8fe9ee04954efff09787b94 (patch)
treee4880db97177eb0cab1f62f215e1afc2244f06bd /ext/soap/php_soap.h
parent6a176fa7b3fbc0b6be145602d5bfbf3e88f6da54 (diff)
downloadphp-git-7dc9be77fc5532c3e8fe9ee04954efff09787b94.tar.gz
Bug #36226 Inconsistent handling when passing potential arrays
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r--ext/soap/php_soap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h
index e6dac36a35..7d2faac1c0 100644
--- a/ext/soap/php_soap.h
+++ b/ext/soap/php_soap.h
@@ -119,6 +119,7 @@ struct _soapService {
char *uri;
xmlCharEncodingHandlerPtr encoding;
HashTable *class_map;
+ int features;
};
#define SOAP_CLASS 1
@@ -151,6 +152,8 @@ struct _soapService {
#define SOAP_AUTHENTICATION_BASIC 0
#define SOAP_AUTHENTICATION_DIGEST 1
+#define SOAP_SINGLE_ELEMENT_ARRAYS (1<<0)
+
ZEND_BEGIN_MODULE_GLOBALS(soap)
HashTable defEncNs; /* mapping of default namespaces to prefixes */
HashTable defEnc;
@@ -167,6 +170,7 @@ ZEND_BEGIN_MODULE_GLOBALS(soap)
long cache_ttl;
xmlCharEncodingHandlerPtr encoding;
HashTable *class_map;
+ int features;
ZEND_END_MODULE_GLOBALS(soap)
#ifdef PHP_WIN32