Skip to content

Struct-pack some soap datatypes #14403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/soap/php_sdl.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ typedef struct _sdlSoapBindingFunctionHeader {
char *name;
char *ns;
sdlEncodingUse use;
sdlRpcEncodingStyle encodingStyle; /* not implemented yet */
sdlTypePtr element;
encodePtr encode;
sdlRpcEncodingStyle encodingStyle; /* not implemented yet */
HashTable *headerfaults; /* array of sdlSoapBindingFunctionHeaderPtr */
} sdlSoapBindingFunctionHeader, *sdlSoapBindingFunctionHeaderPtr;

Expand Down Expand Up @@ -195,9 +195,9 @@ typedef enum _sdlForm {

struct _sdlType {
sdlTypeKind kind;
char nillable;
char *name;
char *namens;
char nillable;
HashTable *elements; /* array of sdlTypePtr */
HashTable *attributes; /* array of sdlAttributePtr */
sdlRestrictionsPtr restrictions;
Expand Down
4 changes: 2 additions & 2 deletions ext/soap/php_soap.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ struct _soapService {
xmlCharEncodingHandlerPtr encoding;
zval class_map;
int features;
int send_errors;
struct _soapHeader **soap_headers_ptr;
int send_errors;
};

#define SOAP_CLASS 1
Expand Down Expand Up @@ -157,9 +157,9 @@ ZEND_BEGIN_MODULE_GLOBALS(soap)
int cur_uniq_ns;
int soap_version;
sdlPtr sdl;
bool use_soap_error_handler;
char* error_code;
zval error_object;
bool use_soap_error_handler;
char cache;
char cache_mode;
char cache_enabled;
Expand Down
Loading