TCPIP_HTTP_NET_IO_RESULT Enumeration
C
typedef enum {
TCPIP_HTTP_NET_IO_RES_DONE = 0u,
TCPIP_HTTP_NET_IO_RES_NEED_DATA,
TCPIP_HTTP_NET_IO_RES_WAITING,
TCPIP_HTTP_NET_IO_RES_ERROR
} TCPIP_HTTP_NET_IO_RESULT;
Description
Result states for execution callbacks.
Members
Members | Description |
---|---|
TCPIP_HTTP_NET_IO_RES_DONE = 0u | Finished with procedure. |
TCPIP_HTTP_NET_IO_RES_NEED_DATA | More data needed to continue, call again later. |
TCPIP_HTTP_NET_IO_RES_WAITING | Waiting for asynchronous process to complete, call again later. |
TCPIP_HTTP_NET_IO_RES_ERROR | Some error has occurred, operation will be aborted. |