1 #ifndef __NET_WIRELESS_NL80211_H 2 #define __NET_WIRELESS_NL80211_H 3 4 #include "core.h" 5 6 int nl80211_init(void); 7 void nl80211_exit(void); 8 void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev, 9 enum nl80211_commands cmd); 10 void nl80211_notify_iface(struct cfg80211_registered_device *rdev, 11 struct wireless_dev *wdev, 12 enum nl80211_commands cmd); 13 void nl80211_send_scan_start(struct cfg80211_registered_device *rdev, 14 struct wireless_dev *wdev); 15 struct sk_buff *nl80211_build_scan_msg(struct cfg80211_registered_device *rdev, 16 struct wireless_dev *wdev, bool aborted); 17 void nl80211_send_scan_msg(struct cfg80211_registered_device *rdev, 18 struct sk_buff *msg); 19 void nl80211_send_sched_scan(struct cfg80211_sched_scan_request *req, u32 cmd); 20 void nl80211_common_reg_change_event(enum nl80211_commands cmd_id, 21 struct regulatory_request *request); 22 23 static inline void 24 nl80211_send_reg_change_event(struct regulatory_request *request) 25 { 26 nl80211_common_reg_change_event(NL80211_CMD_REG_CHANGE, request); 27 } 28 29 static inline void 30 nl80211_send_wiphy_reg_change_event(struct regulatory_request *request) 31 { 32 nl80211_common_reg_change_event(NL80211_CMD_WIPHY_REG_CHANGE, request); 33 } 34 35 void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev, 36 struct net_device *netdev, 37 const u8 *buf, size_t len, gfp_t gfp); 38 void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev, 39 struct net_device *netdev, 40 const u8 *buf, size_t len, gfp_t gfp, 41 int uapsd_queues); 42 void nl80211_send_deauth(struct cfg80211_registered_device *rdev, 43 struct net_device *netdev, 44 const u8 *buf, size_t len, gfp_t gfp); 45 void nl80211_send_disassoc(struct cfg80211_registered_device *rdev, 46 struct net_device *netdev, 47 const u8 *buf, size_t len, gfp_t gfp); 48 void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev, 49 struct net_device *netdev, 50 const u8 *addr, gfp_t gfp); 51 void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev, 52 struct net_device *netdev, 53 const u8 *addr, gfp_t gfp); 54 void nl80211_send_connect_result(struct cfg80211_registered_device *rdev, 55 struct net_device *netdev, 56 struct cfg80211_connect_resp_params *params, 57 gfp_t gfp); 58 void nl80211_send_roamed(struct cfg80211_registered_device *rdev, 59 struct net_device *netdev, 60 struct cfg80211_roam_info *info, gfp_t gfp); 61 void nl80211_send_disconnected(struct cfg80211_registered_device *rdev, 62 struct net_device *netdev, u16 reason, 63 const u8 *ie, size_t ie_len, bool from_ap); 64 65 void 66 nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev, 67 struct net_device *netdev, const u8 *addr, 68 enum nl80211_key_type key_type, 69 int key_id, const u8 *tsc, gfp_t gfp); 70 71 void 72 nl80211_send_beacon_hint_event(struct wiphy *wiphy, 73 struct ieee80211_channel *channel_before, 74 struct ieee80211_channel *channel_after); 75 76 void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev, 77 struct net_device *netdev, const u8 *bssid, 78 gfp_t gfp); 79 80 int nl80211_send_mgmt(struct cfg80211_registered_device *rdev, 81 struct wireless_dev *wdev, u32 nlpid, 82 int freq, int sig_dbm, 83 const u8 *buf, size_t len, u32 flags, gfp_t gfp); 84 85 void 86 nl80211_radar_notify(struct cfg80211_registered_device *rdev, 87 const struct cfg80211_chan_def *chandef, 88 enum nl80211_radar_event event, 89 struct net_device *netdev, gfp_t gfp); 90 91 void nl80211_send_ap_stopped(struct wireless_dev *wdev); 92 93 void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev); 94 95 #endif /* __NET_WIRELESS_NL80211_H */ 96