diff options
author | Andrei Zmievski <andrei@php.net> | 2006-04-09 23:35:51 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2006-04-09 23:35:51 +0000 |
commit | 06ef71fe3db45fb1cf1c556c537c98924828a4a8 (patch) | |
tree | 03e51036274ea038952e6682340c85dbab0c5e99 /ext/soap/php_encoding.h | |
parent | 1e33c4cc85396bb5aefb0956e19a652aa5cbf757 (diff) | |
download | php-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_encoding.h')
-rw-r--r-- | ext/soap/php_encoding.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/php_encoding.h b/ext/soap/php_encoding.h index e6638b41fd..2282a9ad71 100644 --- a/ext/soap/php_encoding.h +++ b/ext/soap/php_encoding.h @@ -219,6 +219,7 @@ xmlNsPtr encode_add_ns(xmlNodePtr node, const char* ns); encodePtr get_conversion(int encode); void delete_encoder(void *handle); +void delete_encoder_persistent(void *handle); extern encode defaultEncoding[]; |