TCPIP_TFTPS_RESULT Enumeration
C
typedef enum {
TFTPS_RES_OK,
TFTPS_RES_PROGRESS,
TFTPS_RES_IS_NOT_READY = -1,
TFTPS_RES_BUSY = -2,
TFTPS_RES_TSTAMP_ERROR = -3,
TFTPS_RES_TSTAMP_STALE = -4,
TFTPS_RES_SKT_ERR = -5,
TFTPS_RES_SKT_BIND_ERR = -6,
TFTPS_RES_CONN_ERR = -7,
TFTPS_RES_MEMORY_ALLOC_ERR = -8,
TFTPS_RES_ILLIGAL_OPERN = -9,
TFTPS_RES_CLIENT_ERROR = -10,
TFTPS_RES_RECEIVE_ERROR = -11,
TFTPS_RES_NO_CLIENT_CB = -12,
TFTPS_RES_RCVD_FROM_SAME_CLIENT = -13,
TFTPS_RES_FILE_LENGTH_ERROR = -14,
TFTPS_RES_FILE_NOT_FOUND_ERROR = -15,
TFTPS_RES_TRANSFERMODE_NOT_SUPPORTED = -16
} TCPIP_TFTPS_RESULT;
Members
Members | Description |
---|---|
TFTPS_RES_OK | the operation was successful |
TFTPS_RES_PROGRESS | an TFTPS operation is in progress |
TFTPS_RES_IS_NOT_READY = -1 | If the TFTP Server is not ready |
TFTPS_RES_BUSY = -2 | module is busy |
TFTPS_RES_TSTAMP_ERROR = -3 | no timestamp is available, server not contacted |
TFTPS_RES_TSTAMP_STALE = -4 | timestamp is stale, there's no recent timestamp |
TFTPS_RES_SKT_ERR = -5 | TFTP server socket could not be opened |
TFTPS_RES_SKT_BIND_ERR = -6 | TFTP server socket bind failed |
TFTPS_RES_CONN_ERR = -7 | Illegal TFTP Operation and TFTP connection error |
TFTPS_RES_MEMORY_ALLOC_ERR = -8 | TFTP Client socket UDP Memory error |
TFTPS_RES_ILLIGAL_OPERN = -9 | TFTP server illegal operation |
TFTPS_RES_CLIENT_ERROR = -10 | TFTP server receives Client error code data |
TFTPS_RES_RECEIVE_ERROR = -11 | TFTP Server has not received any data |
TFTPS_RES_NO_CLIENT_CB = -12 | No client control block is available |
TFTPS_RES_RCVD_FROM_SAME_CLIENT = -13 | When receive a request from same client with same port which is process |
TFTPS_RES_FILE_LENGTH_ERROR = -14 | Invalid file name length error |
TFTPS_RES_FILE_NOT_FOUND_ERROR = -15 | File not found in the File system |
TFTPS_RES_TRANSFERMODE_NOT_SUPPORTED = -16 | Transfer mode not supported |
Description
TCPIP_TFTPS_RESULT Enumeration Provides a list of possible TFTPS results.
Remarks
None