summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r--ext/soap/php_soap.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h
index d6988cd0f0..ec193c0d83 100644
--- a/ext/soap/php_soap.h
+++ b/ext/soap/php_soap.h
@@ -158,11 +158,6 @@ struct _soapService {
#define SOAP_SINGLE_ELEMENT_ARRAYS (1<<0)
#define SOAP_WAIT_ONE_WAY_CALLS (2<<0)
-#define WSDL_CACHE_NONE 0x0
-#define WSDL_CACHE_DISK 0x1
-#define WSDL_CACHE_MEMORY 0x2
-#define WSDL_CACHE_BOTH 0x3
-
ZEND_BEGIN_MODULE_GLOBALS(soap)
HashTable defEncNs; /* mapping of default namespaces to prefixes */
HashTable defEnc;
@@ -174,15 +169,12 @@ ZEND_BEGIN_MODULE_GLOBALS(soap)
zend_bool use_soap_error_handler;
char* error_code;
zval* error_object;
- long cache;
+ zend_bool cache_enabled;
char* cache_dir;
long cache_ttl;
- long cache_limit;
- HashTable *mem_cache;
xmlCharEncodingHandlerPtr encoding;
HashTable *class_map;
int features;
- HashTable wsdl_cache;
ZEND_END_MODULE_GLOBALS(soap)
#ifdef PHP_WIN32