diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-03-21 12:04:55 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-03-21 12:04:55 +0000 |
commit | bafba669ad5d0c046733bd684e7d22faf0cfccb4 (patch) | |
tree | a56ecadb00671c2ec6766cb0bb87c512e53c82b3 /ext/soap/php_soap.h | |
parent | 658ac96cfaedc254df22e0179a53bd570346df08 (diff) | |
download | php-git-bafba669ad5d0c046733bd684e7d22faf0cfccb4.tar.gz |
Fixed bug #36721 (The SoapServer is not able to send a header that it didn't receive)
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 21c8e078c1..ec193c0d83 100644 --- a/ext/soap/php_soap.h +++ b/ext/soap/php_soap.h @@ -97,6 +97,8 @@ struct _soapMapping { } map_class; }; +struct _soapHeader; + struct _soapService { sdlPtr sdl; @@ -120,6 +122,7 @@ struct _soapService { xmlCharEncodingHandlerPtr encoding; HashTable *class_map; int features; + struct _soapHeader **soap_headers_ptr; }; #define SOAP_CLASS 1 |