You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
417 B
12 lines
417 B
#pragma once
|
|
typedef enum {
|
|
kxs_ec_success = 0,
|
|
kxs_ec_overtime = 1,
|
|
kxs_ec_socket_fail = 2,
|
|
kxs_ec_bind_fail = 3,
|
|
kxs_ec_send_fail = 4,
|
|
kxs_ec_receive_fail = 5,
|
|
kxs_ec_setsockopt_rx_timeout_fail = 6,
|
|
kxs_ec_lose_connect = 7,
|
|
kxs_ec_param_error = 8,
|
|
} zaf_error_code_t;
|