summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-04-20 21:11:30 +0000
committerSVN Migration <svn@php.net>2006-04-20 21:11:30 +0000
commit109496d8b2e5af46a97359e922e4967165a29e90 (patch)
treed5063e4b1c2edd0648471c77df40e05ce6d2190f /ext/soap/php_soap.h
parent50e1a51e5cad146ff62171339298d0a16810427e (diff)
downloadphp-git-php-5.1.3RC3.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_1_3RC3'.php-5.1.3RC3
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