diff options
Diffstat (limited to 'net/wireless/nl80211.h')
-rw-r--r-- | net/wireless/nl80211.h | 71 |
1 files changed, 43 insertions, 28 deletions
diff --git a/net/wireless/nl80211.h b/net/wireless/nl80211.h index 5c12ad13499b..44cc2a76a1b0 100644 --- a/net/wireless/nl80211.h +++ b/net/wireless/nl80211.h | |||
@@ -3,39 +3,54 @@ | |||
3 | 3 | ||
4 | #include "core.h" | 4 | #include "core.h" |
5 | 5 | ||
6 | extern int nl80211_init(void); | 6 | int nl80211_init(void); |
7 | extern void nl80211_exit(void); | 7 | void nl80211_exit(void); |
8 | extern void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev); | 8 | void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev); |
9 | extern void nl80211_send_scan_done(struct cfg80211_registered_device *rdev, | 9 | void nl80211_send_scan_start(struct cfg80211_registered_device *rdev, |
10 | struct net_device *netdev); | 10 | struct net_device *netdev); |
11 | extern void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, | 11 | void nl80211_send_scan_done(struct cfg80211_registered_device *rdev, |
12 | struct net_device *netdev); | 12 | struct net_device *netdev); |
13 | extern void nl80211_send_reg_change_event(struct regulatory_request *request); | 13 | void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, |
14 | extern void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev, | 14 | struct net_device *netdev); |
15 | struct net_device *netdev, | 15 | void nl80211_send_reg_change_event(struct regulatory_request *request); |
16 | const u8 *buf, size_t len); | 16 | void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev, |
17 | extern void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev, | 17 | struct net_device *netdev, |
18 | struct net_device *netdev, | 18 | const u8 *buf, size_t len, gfp_t gfp); |
19 | const u8 *buf, size_t len); | 19 | void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev, |
20 | extern void nl80211_send_deauth(struct cfg80211_registered_device *rdev, | 20 | struct net_device *netdev, |
21 | const u8 *buf, size_t len, gfp_t gfp); | ||
22 | void nl80211_send_deauth(struct cfg80211_registered_device *rdev, | ||
23 | struct net_device *netdev, | ||
24 | const u8 *buf, size_t len, gfp_t gfp); | ||
25 | void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, | ||
26 | struct net_device *netdev, | ||
27 | const u8 *buf, size_t len, gfp_t gfp); | ||
28 | void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, | ||
29 | struct net_device *netdev, | ||
30 | const u8 *addr, gfp_t gfp); | ||
31 | void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, | ||
21 | struct net_device *netdev, | 32 | struct net_device *netdev, |
22 | const u8 *buf, size_t len); | 33 | const u8 *addr, gfp_t gfp); |
23 | extern void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, | 34 | void nl80211_send_connect_result(struct cfg80211_registered_device *rdev, |
24 | struct net_device *netdev, | 35 | struct net_device *netdev, const u8 *bssid, |
25 | const u8 *buf, size_t len); | 36 | const u8 *req_ie, size_t req_ie_len, |
26 | extern void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, | 37 | const u8 *resp_ie, size_t resp_ie_len, |
27 | struct net_device *netdev, | 38 | u16 status, gfp_t gfp); |
28 | const u8 *addr); | 39 | void nl80211_send_roamed(struct cfg80211_registered_device *rdev, |
29 | extern void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, | 40 | struct net_device *netdev, const u8 *bssid, |
30 | struct net_device *netdev, | 41 | const u8 *req_ie, size_t req_ie_len, |
31 | const u8 *addr); | 42 | const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp); |
32 | extern void | 43 | void nl80211_send_disconnected(struct cfg80211_registered_device *rdev, |
44 | struct net_device *netdev, u16 reason, | ||
45 | const u8 *ie, size_t ie_len, bool from_ap); | ||
46 | |||
47 | void | ||
33 | nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, | 48 | nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, |
34 | struct net_device *netdev, const u8 *addr, | 49 | struct net_device *netdev, const u8 *addr, |
35 | enum nl80211_key_type key_type, | 50 | enum nl80211_key_type key_type, |
36 | int key_id, const u8 *tsc); | 51 | int key_id, const u8 *tsc, gfp_t gfp); |
37 | 52 | ||
38 | extern void | 53 | void |
39 | nl80211_send_beacon_hint_event(struct wiphy *wiphy, | 54 | nl80211_send_beacon_hint_event(struct wiphy *wiphy, |
40 | struct ieee80211_channel *channel_before, | 55 | struct ieee80211_channel *channel_before, |
41 | struct ieee80211_channel *channel_after); | 56 | struct ieee80211_channel *channel_after); |