TCPIP_HTTP_SSI_ATTR_DCPT Structure
C
typedef struct {
const char* attribute;
char* value;
} TCPIP_HTTP_SSI_ATTR_DCPT;
Description
Data structure: TCPIP_HTTP_SSI_ATTR_DCPT
This data type defines the structure of a SSI command attribute descriptor. When the user registers a template_SSINotification() function for SSI processing, this callback will receive info about the SSI attribute descriptors.
Members
Members | Description |
---|---|
attribute | The SSI attribute of the command. |
value | The SSI value. |
Remarks
The SSI commands consist of pairs of (attribute, value) tokens. For example: < !--#set var="varname" value="varvalue" -- > has 2 pairs: pair 1 - attribute = var value = varname pair 2 - attribute = value value = varvalue