From: Anton Nayshtut Date: Sun, 16 Nov 2014 15:28:53 +0000 (+0200) Subject: nl80211: Register for FST Action frames (STA) X-Git-Tag: hostap_2_5~403 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46ab9b8cf07a16b6e6d50b59bafc8ce553822a26;p=thirdparty%2Fhostap.git nl80211: Register for FST Action frames (STA) wpa_supplicant will process these Action frames for FST operations. Signed-off-by: Jouni Malinen --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index b775bb65f..69e2f2789 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -1878,6 +1878,11 @@ static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss) ret = -1; } #endif /* CONFIG_TDLS */ +#ifdef CONFIG_FST + /* FST Action frames */ + if (nl80211_register_action_frame(bss, (u8 *) "\x12", 1) < 0) + ret = -1; +#endif /* CONFIG_FST */ /* FT Action frames */ if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)