diff options
author | SVN Migration <svn@php.net> | 2006-05-03 23:30:03 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2006-05-03 23:30:03 +0000 |
commit | 3e44943db6ceb0df75e1a94e21c55d62c8547b7e (patch) | |
tree | fc5426f5966834bcbb09e285b3b31893d096290b /ext/soap/php_soap.h | |
parent | 87583528c639c970e39a53d32b331ae6e8c8685d (diff) | |
download | php-git-php-5.1.4.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_5_1_4'.php-5.1.4
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r-- | ext/soap/php_soap.h | 10 |
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 |