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

MembersDescription
argTypeA TCPIP_HTTP_DYN_ARG_TYPE value.
argFlagsExtra argument flags.
argInt32Use this member when the arg type is INT32.
argStrUse this member when the arg type is string.

Remarks

The argument flags are currently not used. They are meant for further extensions.