diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-02-07 12:49:10 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-02-07 12:49:10 +0000 |
commit | 73605400e842e3c0210c46e4980b9ea748db3886 (patch) | |
tree | 8c6558f0df8144307b19744d98045bb21406da99 /ext/soap/php_soap.h | |
parent | 783190088274822a9a63b78edef97e6d20a7eb72 (diff) | |
download | php-git-73605400e842e3c0210c46e4980b9ea748db3886.tar.gz |
Fixed bug #36083 (SoapClient waits for responses on one-way operations)
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r-- | ext/soap/php_soap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h index 7d2faac1c0..21c8e078c1 100644 --- a/ext/soap/php_soap.h +++ b/ext/soap/php_soap.h @@ -153,6 +153,7 @@ struct _soapService { #define SOAP_AUTHENTICATION_DIGEST 1 #define SOAP_SINGLE_ELEMENT_ARRAYS (1<<0) +#define SOAP_WAIT_ONE_WAY_CALLS (2<<0) ZEND_BEGIN_MODULE_GLOBALS(soap) HashTable defEncNs; /* mapping of default namespaces to prefixes */ |