diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-02-16 12:39:13 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-27 14:52:38 -0500 |
commit | 70692ad2923a379e0a10f9ec2ad93fbbe084cc46 (patch) | |
tree | f67488c396ea6e61f71e0199eea189ea939a698b /net/mac80211/mlme.c | |
parent | 83befbde839b1deb0cd752a834ffd9fde8571ae2 (diff) |
nl80211: Optional IEs into scan request
This extends the NL80211_CMD_TRIGGER_SCAN command to allow applications
to specify a set of information element(s) to be added into Probe
Request frames with NL80211_ATTR_IE. This provides support for the
MLME-SCAN.request primitive parameter VendorSpecificInfo and can be
used, e.g., to implement WPS scanning.
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r-- | net/mac80211/mlme.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index ec5a0900cba0..5a4977936f6f 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -716,7 +716,7 @@ static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata) | |||
716 | * will not answer to direct packet in unassociated state. | 716 | * will not answer to direct packet in unassociated state. |
717 | */ | 717 | */ |
718 | ieee80211_send_probe_req(sdata, NULL, | 718 | ieee80211_send_probe_req(sdata, NULL, |
719 | ifmgd->ssid, ifmgd->ssid_len); | 719 | ifmgd->ssid, ifmgd->ssid_len, NULL, 0); |
720 | 720 | ||
721 | mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT); | 721 | mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT); |
722 | } | 722 | } |
@@ -946,7 +946,8 @@ static void ieee80211_associated(struct ieee80211_sub_if_data *sdata) | |||
946 | } else | 946 | } else |
947 | ieee80211_send_probe_req(sdata, ifmgd->bssid, | 947 | ieee80211_send_probe_req(sdata, ifmgd->bssid, |
948 | ifmgd->ssid, | 948 | ifmgd->ssid, |
949 | ifmgd->ssid_len); | 949 | ifmgd->ssid_len, |
950 | NULL, 0); | ||
950 | ifmgd->flags ^= IEEE80211_STA_PROBEREQ_POLL; | 951 | ifmgd->flags ^= IEEE80211_STA_PROBEREQ_POLL; |
951 | } else { | 952 | } else { |
952 | ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL; | 953 | ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL; |
@@ -955,7 +956,8 @@ static void ieee80211_associated(struct ieee80211_sub_if_data *sdata) | |||
955 | ifmgd->last_probe = jiffies; | 956 | ifmgd->last_probe = jiffies; |
956 | ieee80211_send_probe_req(sdata, ifmgd->bssid, | 957 | ieee80211_send_probe_req(sdata, ifmgd->bssid, |
957 | ifmgd->ssid, | 958 | ifmgd->ssid, |
958 | ifmgd->ssid_len); | 959 | ifmgd->ssid_len, |
960 | NULL, 0); | ||
959 | } | 961 | } |
960 | } | 962 | } |
961 | } | 963 | } |