TCPIP_ICMP_ECHO_REQUEST_RESULT Enumeration
C
typedef enum {
TCPIP_ICMP_ECHO_REQUEST_RES_OK = 0,
TCPIP_ICMP_ECHO_REQUEST_RES_TMO = -1
} TCPIP_ICMP_ECHO_REQUEST_RESULT;
Description
A result code for an echo request callback (as a result of an ICMP TCPIP_ICMP_EchoRequest() call).
Members
Members | Description |
---|---|
TCPIP_ICMP_ECHO_REQUEST_RES_OK = 0 | A reply has been successfully received error codes, < 0. |
TCPIP_ICMP_ECHO_REQUEST_RES_TMO = -1 | No reply recceived. The current request time out and will be deleted. |