summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-02-02 10:34:39 +0000
committerDmitry Stogov <dmitry@php.net>2005-02-02 10:34:39 +0000
commit3c3141007441ff8ffbce96ebc8f899400b4e69ab (patch)
tree0696a51bf7f62fa876314afe3b084d1c5667b947 /ext/soap/php_soap.h
parentd38eed95ea357356aba8d540a4f7c064b34f82e5 (diff)
downloadphp-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.h3
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;