lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | #ifndef _WLAN_STATION |
| 2 | #define _WLAN_STATION |
| 3 | |
| 4 | #include <linux/rtc.h> |
| 5 | #include <sys/ioctl.h> |
| 6 | #include <stdio.h> |
| 7 | #include <errno.h> |
| 8 | #include <string.h> |
| 9 | #include <stdlib.h> |
| 10 | #include <sys/types.h> |
| 11 | #include <sys/stat.h> |
| 12 | #include <fcntl.h> |
| 13 | #include <netinet/in.h> |
| 14 | #include <unistd.h> |
| 15 | #include <sys/ipc.h> |
| 16 | #include <sys/msg.h> |
| 17 | #include <pthread.h> |
| 18 | #include <syslog.h> |
| 19 | #include <signal.h> |
| 20 | #include <sys/time.h> |
| 21 | #include <time.h> |
| 22 | #include "../include/softap_api.h" |
| 23 | //#include "../include/errorcode.h" |
| 24 | //#include "../include/netapi.h" |
| 25 | |
| 26 | void wlan_station_init(void); |
| 27 | BOOL wlan_station_is_station_msg(unsigned short msg); |
| 28 | void wlan_station_msg_handle(MSG_BUF *pMsg); |
| 29 | void Delete_connect_timeout_timer(void); |
| 30 | void wifi_station_close(); |
xf.li | 6c8fc1e | 2023-08-12 00:11:09 -0700 | [diff] [blame^] | 31 | void wifi_station_cancel_scan(void); |
lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 32 | |
| 33 | void wlan_statemachine_init(); |
| 34 | void wlan_station_open(); |
| 35 | |
| 36 | #endif |
| 37 | |