TCPIP_HTTP_DYN_PRINT_RES Enumeration
C
typedef enum {
TCPIP_HTTP_DYN_PRINT_RES_DONE = 0,
TCPIP_HTTP_DYN_PRINT_RES_DEFAULT,
TCPIP_HTTP_DYN_PRINT_RES_PROCESS_AGAIN,
TCPIP_HTTP_DYN_PRINT_RES_AGAIN
} TCPIP_HTTP_DYN_PRINT_RES;
Description
Enumeration: TCPIP_HTTP_DYN_PRINT_RES
This enumeration defines the results associated with the HTTP dynamic variables callbacks (template_DynPrint()).
Members
Members | Description |
---|---|
TCPIP_HTTP_DYN_PRINT_RES_DONE = 0 | Dynamic callback is done. |
TCPIP_HTTP_DYN_PRINT_RES_DEFAULT | No implementation supported for this dynamic variable, call the default action. |
TCPIP_HTTP_DYN_PRINT_RES_PROCESS_AGAIN | Process the action of this call and then call again data written to the HTTP connection but more data is pending. |
TCPIP_HTTP_DYN_PRINT_RES_AGAIN | Do not process any action just call again. No data was available to be written to the connection or the written data should be ignored this turn. |
Remarks
Currently the default action for a user defined dynamic variable is "do nothing". Keywords like "inc" have an internal implementation and don't need to be processed by the user.