1.3.3.15 SYS_NET_RESULT Enum
C
typedef enum
{
// Success
SYS_NET_SUCCESS = 0,
// Failure
SYS_NET_FAILURE = -1,
// Sys NET Service Down
SYS_NET_SERVICE_DOWN = -2,
// Enough space not available in the transmit buffer to send the message. Application should try again later
SYS_NET_PUT_NOT_READY = -3,
// Sys NET No Data Available for receiving
SYS_NET_GET_NOT_READY = -4,
// Sys NET Semaphore Operation of Take/ Release Failed
SYS_NET_SEM_OPERATION_FAILURE = -5,
// Sys NET Invalid Handle
SYS_NET_INVALID_HANDLE = -6,
} SYS_NET_RESULT;
Summary
Identifies the return values for the Sys Net APIs.
Remarks
None.
