aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-12-23 13:15:44 +0100
committerJohn W. Linville <linville@tuxdriver.com>2009-12-28 16:55:06 -0500
commit98b6218388e345064c3f2d3c161383a18274c638 (patch)
tree3df881c8e15947aeefe31da7fa83980a1530aed3 /include
parentmac80211: make off-channel work generic (diff)
downloadlinux-dev-98b6218388e345064c3f2d3c161383a18274c638.tar.xz
linux-dev-98b6218388e345064c3f2d3c161383a18274c638.zip
mac80211/cfg80211: add station events
When, for instance, a new IBSS peer is found, userspace wants to be notified. Add events for all new stations that mac80211 learns about. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/cfg80211.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index b66beb052054..add79930f47d 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -2195,4 +2195,16 @@ void cfg80211_remain_on_channel_expired(struct net_device *dev,
enum nl80211_channel_type channel_type,
gfp_t gfp);
+
+/**
+ * cfg80211_new_sta - notify userspace about station
+ *
+ * @dev: the netdev
+ * @mac_addr: the station's address
+ * @sinfo: the station information
+ * @gfp: allocation flags
+ */
+void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
+ struct station_info *sinfo, gfp_t gfp);
+
#endif /* __NET_CFG80211_H */