2 * Interface for the wlan network scan routines
4 * Driver interface functions and type declarations for the scan module
5 * implemented in scan.c.
10 #include <net/iw_handler.h>
12 #define MAX_NETWORK_COUNT 128
15 * @brief Maximum number of channels that can be sent in a setuserscan ioctl
17 #define LBS_IOCTL_USER_SCAN_CHAN_MAX 50
19 int lbs_ssid_cmp(u8 *ssid1, u8 ssid1_len, u8 *ssid2, u8 ssid2_len);
21 int lbs_send_specific_ssid_scan(struct lbs_private *priv, u8 *ssid,
24 int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
25 struct iw_point *dwrq, char *extra);
26 int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
27 union iwreq_data *wrqu, char *extra);
29 int lbs_scan_networks(struct lbs_private *priv, int full_scan);
31 void lbs_scan_worker(struct work_struct *work);