diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-02-25 14:04:41 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-02-25 14:04:41 +0000 |
commit | 32b6d2fbf8e8a4c1e64d4d5fec72d91d2845f328 (patch) | |
tree | 069f8a8974f482eb075aabe6951ee315902e067f /ext/soap/php_soap.h | |
parent | cae6ae825014bfc95bd7efc66c2c49a9eae1805c (diff) | |
download | php-git-32b6d2fbf8e8a4c1e64d4d5fec72d91d2845f328.tar.gz |
HTTP compression support (gzip and deflate)
Diffstat (limited to 'ext/soap/php_soap.h')
-rw-r--r-- | ext/soap/php_soap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/soap/php_soap.h b/ext/soap/php_soap.h index 080279893f..1ccbfd5951 100644 --- a/ext/soap/php_soap.h +++ b/ext/soap/php_soap.h @@ -138,6 +138,10 @@ struct _soapService { #define SOAP_1_2_ACTOR_NONE "http://www.w3.org/2003/05/soap-envelope/role/none" #define SOAP_1_2_ACTOR_UNLIMATERECEIVER "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver" +#define SOAP_COMPRESSION_ACCEPT 0x20 +#define SOAP_COMPRESSION_GZIP 0x00 +#define SOAP_COMPRESSION_DEFLATE 0x10 + ZEND_BEGIN_MODULE_GLOBALS(soap) HashTable defEncNs; /* mapping of default namespaces to prefixes */ HashTable defEnc; |