Blame view

net/wireless/wext-compat.h 2.1 KB
0e82ffe3b   Johannes Berg   cfg80211: combine...
1
2
  #ifndef __WEXT_COMPAT
  #define __WEXT_COMPAT
a9a11622c   Johannes Berg   cfg80211: self-co...
3
4
  #include <net/iw_handler.h>
  #include <linux/wireless.h>
0e82ffe3b   Johannes Berg   cfg80211: combine...
5
6
7
8
9
10
  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);
562e48226   Johannes Berg   cfg80211: combine...
11
12
13
14
15
16
  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);
1f9298f96   Johannes Berg   cfg80211: combine...
17
18
19
20
21
22
  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);
0e82ffe3b   Johannes Berg   cfg80211: combine...
23
24
25
26
27
28
29
  
  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);
562e48226   Johannes Berg   cfg80211: combine...
30
31
32
33
34
35
  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);
1f9298f96   Johannes Berg   cfg80211: combine...
36
37
38
39
40
41
  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);
0e82ffe3b   Johannes Berg   cfg80211: combine...
42

04b0c5c69   Johannes Berg   cfg80211: remove ...
43
44
45
46
47
48
  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);
96998e3a2   Zhao, Gang   cfg80211: remove ...
49
  int cfg80211_wext_freq(struct iw_freq *freq);
0e82ffe3b   Johannes Berg   cfg80211: combine...
50

a9a11622c   Johannes Berg   cfg80211: self-co...
51
52
  
  extern const struct iw_handler_def cfg80211_wext_handler;
0e82ffe3b   Johannes Berg   cfg80211: combine...
53
  #endif /* __WEXT_COMPAT */