Blame view

net/wireless/wext-compat.h 2.26 KB
81f7e3824   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  #ifndef __WEXT_COMPAT
  #define __WEXT_COMPAT
  
  #include <net/iw_handler.h>
  #include <linux/wireless.h>
  
  #ifdef CONFIG_CFG80211_WEXT_EXPORT
  #define EXPORT_WEXT_HANDLER(h) EXPORT_SYMBOL_GPL(h)
  #else
  #define EXPORT_WEXT_HANDLER(h)
  #endif /* CONFIG_CFG80211_WEXT_EXPORT */
  
  int cfg80211_ibss_wext_siwfreq(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_freq *freq, char *extra);
  int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_freq *freq, char *extra);
  int cfg80211_ibss_wext_siwap(struct net_device *dev,
  			     struct iw_request_info *info,
  			     struct sockaddr *ap_addr, char *extra);
  int cfg80211_ibss_wext_giwap(struct net_device *dev,
  			     struct iw_request_info *info,
  			     struct sockaddr *ap_addr, char *extra);
  int cfg80211_ibss_wext_siwessid(struct net_device *dev,
  				struct iw_request_info *info,
  				struct iw_point *data, char *ssid);
  int cfg80211_ibss_wext_giwessid(struct net_device *dev,
  				struct iw_request_info *info,
  				struct iw_point *data, char *ssid);
  
  int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
  			      struct iw_request_info *info,
  			      struct iw_freq *freq, char *extra);
  int cfg80211_mgd_wext_giwfreq(struct net_device *dev,
  			      struct iw_request_info *info,
  			      struct iw_freq *freq, char *extra);
  int cfg80211_mgd_wext_siwap(struct net_device *dev,
  			    struct iw_request_info *info,
  			    struct sockaddr *ap_addr, char *extra);
  int cfg80211_mgd_wext_giwap(struct net_device *dev,
  			    struct iw_request_info *info,
  			    struct sockaddr *ap_addr, char *extra);
  int cfg80211_mgd_wext_siwessid(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_point *data, char *ssid);
  int cfg80211_mgd_wext_giwessid(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_point *data, char *ssid);
  
  int cfg80211_wext_siwmlme(struct net_device *dev,
  			  struct iw_request_info *info,
  			  struct iw_point *data, char *extra);
  int cfg80211_wext_siwgenie(struct net_device *dev,
  			   struct iw_request_info *info,
  			   struct iw_point *data, char *extra);
  
  
  int cfg80211_wext_freq(struct iw_freq *freq);
  
  
  extern const struct iw_handler_def cfg80211_wext_handler;
  #endif /* __WEXT_COMPAT */