summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2006-04-09 23:35:51 +0000
committerAndrei Zmievski <andrei@php.net>2006-04-09 23:35:51 +0000
commit06ef71fe3db45fb1cf1c556c537c98924828a4a8 (patch)
tree03e51036274ea038952e6682340c85dbab0c5e99 /ext/soap/php_soap.h
parent1e33c4cc85396bb5aefb0956e19a652aa5cbf757 (diff)
downloadphp-git-06ef71fe3db45fb1cf1c556c537c98924828a4a8.tar.gz
Speed up SoapClient/SoapServer constructors by caching WSDL structures
in memory. All WSDL files will be cached, unless turned off via an option to the constructor.
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r--ext/soap/php_soap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h
index ec193c0d83..a0a7bf6dde 100644
--- a/ext/soap/php_soap.h
+++ b/ext/soap/php_soap.h
@@ -175,6 +175,7 @@ ZEND_BEGIN_MODULE_GLOBALS(soap)
xmlCharEncodingHandlerPtr encoding;
HashTable *class_map;
int features;
+ HashTable wsdl_cache;
ZEND_END_MODULE_GLOBALS(soap)
#ifdef PHP_WIN32