ll | 7683a72 | 2023-01-19 11:14:23 +0800 | [diff] [blame] | 1 | #ifndef LYNQ_MODULE_SOCKET_H
|
| 2 | #define LYNQ_MODULE_SOCKET_H
|
| 3 |
|
| 4 | using ::android::Parcel;
|
| 5 |
|
| 6 | int lynq_set_test_network(const int test_mode);
|
| 7 |
|
| 8 | extern int g_module_Global_uToken;
|
| 9 | extern int g_wait_time;
|
| 10 | int lynq_send_common_request(Parcel*& p, int time_out, int request_id, int argc, const char* format,...);
|
| 11 | int lynq_start_all_urc_socket_thread();
|
| 12 | void lynq_close_all_urc_socket_thread();
|
| 13 | int lynq_start_all_rc_socket_thread();
|
| 14 | void lynq_close_all_rc_socket_thread();
|
| 15 |
|
| 16 | const char * requestToString(int request);
|
| 17 |
|
| 18 | void urc_msg_process(Parcel *p);
|
| 19 | bool is_support_urc(int urc_id);
|
| 20 | bool is_support_request(int req_id);
|
| 21 |
|
| 22 | #endif
|