diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-02-02 10:34:39 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-02-02 10:34:39 +0000 |
commit | 3c3141007441ff8ffbce96ebc8f899400b4e69ab (patch) | |
tree | 0696a51bf7f62fa876314afe3b084d1c5667b947 /ext/soap/php_soap.h | |
parent | d38eed95ea357356aba8d540a4f7c064b34f82e5 (diff) | |
download | php-git-3c3141007441ff8ffbce96ebc8f899400b4e69ab.tar.gz |
Fixed bug #31747 (SOAP Digest Authentication doesn't work with "HTTP/1.1 100 Continue" response)
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r-- | ext/soap/php_soap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h index 59f1a3d8fc..2d43901002 100644 --- a/ext/soap/php_soap.h +++ b/ext/soap/php_soap.h @@ -146,6 +146,9 @@ struct _soapService { #define SOAP_COMPRESSION_GZIP 0x00 #define SOAP_COMPRESSION_DEFLATE 0x10 +#define SOAP_AUTHENTICATION_BASIC 0 +#define SOAP_AUTHENTICATION_DIGEST 1 + ZEND_BEGIN_MODULE_GLOBALS(soap) HashTable defEncNs; /* mapping of default namespaces to prefixes */ HashTable defEnc; |