2007-02-10 14:25:27 +00:00
|
|
|
/**
|
|
|
|
* Interface for the wlan network scan routines
|
|
|
|
*
|
|
|
|
* Driver interface functions and type declarations for the scan module
|
2007-11-15 23:05:47 +00:00
|
|
|
* implemented in scan.c.
|
2007-02-10 14:25:27 +00:00
|
|
|
*/
|
2007-11-15 23:05:47 +00:00
|
|
|
#ifndef _LBS_SCAN_H
|
|
|
|
#define _LBS_SCAN_H
|
2007-02-10 14:25:27 +00:00
|
|
|
|
2008-10-30 21:09:54 +00:00
|
|
|
#include <net/iw_handler.h>
|
|
|
|
|
|
|
|
#define MAX_NETWORK_COUNT 128
|
|
|
|
|
2007-02-10 14:25:27 +00:00
|
|
|
/**
|
|
|
|
* @brief Maximum number of channels that can be sent in a setuserscan ioctl
|
|
|
|
*/
|
2007-11-15 23:05:47 +00:00
|
|
|
#define LBS_IOCTL_USER_SCAN_CHAN_MAX 50
|
2007-02-10 14:25:27 +00:00
|
|
|
|
2007-11-15 23:05:47 +00:00
|
|
|
int lbs_ssid_cmp(u8 *ssid1, u8 ssid1_len, u8 *ssid2, u8 ssid2_len);
|
2007-05-25 20:15:56 +00:00
|
|
|
|
2007-11-23 14:43:44 +00:00
|
|
|
int lbs_send_specific_ssid_scan(struct lbs_private *priv, u8 *ssid,
|
2008-03-05 06:05:32 +00:00
|
|
|
u8 ssid_len);
|
2007-02-10 14:25:27 +00:00
|
|
|
|
2007-11-15 23:05:47 +00:00
|
|
|
int lbs_get_scan(struct net_device *dev, struct iw_request_info *info,
|
2007-02-10 14:25:27 +00:00
|
|
|
struct iw_point *dwrq, char *extra);
|
2007-11-15 23:05:47 +00:00
|
|
|
int lbs_set_scan(struct net_device *dev, struct iw_request_info *info,
|
2008-03-05 06:05:32 +00:00
|
|
|
union iwreq_data *wrqu, char *extra);
|
2007-02-10 14:25:27 +00:00
|
|
|
|
2008-04-02 14:27:42 +00:00
|
|
|
int lbs_scan_networks(struct lbs_private *priv, int full_scan);
|
|
|
|
|
2007-11-15 23:05:47 +00:00
|
|
|
void lbs_scan_worker(struct work_struct *work);
|
2007-08-02 17:19:04 +00:00
|
|
|
|
2007-11-15 23:05:47 +00:00
|
|
|
#endif
|