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

MembersDescription
TCPIP_ICMP_ECHO_REQUEST_RES_OK = 0A reply has been successfully received error codes, < 0.
TCPIP_ICMP_ECHO_REQUEST_RES_TMO = -1No reply recceived. The current request time out and will be deleted.