TCPIP_HTTP_DYN_ARG_DCPT Structure
C
typedef struct {
uint16_t argType;
uint16_t argFlags;
union {
int32_t argInt32;
const char* argStr;
}
} TCPIP_HTTP_DYN_ARG_DCPT;
Description
Data structure: TCPIP_HTTP_DYN_ARG_DCPT
This data type defines the structure of a HTTP dynamic variable argument. It is used for describing the dynamic variables arguments.
Members
Members | Description |
---|---|
argType | A TCPIP_HTTP_DYN_ARG_TYPE value. |
argFlags | Extra argument flags. |
argInt32 | Use this member when the arg type is INT32. |
argStr | Use this member when the arg type is string. |
Remarks
The argument flags are currently not used. They are meant for further extensions.