]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
nl80211: Register Neighbor Report Response Action frame
authorAssaf Krauss <assaf.krauss@intel.com>
Wed, 5 Nov 2014 08:42:49 +0000 (03:42 -0500)
committerJouni Malinen <j@w1.fi>
Sat, 22 Nov 2014 19:16:25 +0000 (21:16 +0200)
Add Neighbor Report Response Action frame to registration of Action
frames to be handled by wpa_supplicant.

Signed-off-by: Assaf Krauss <assaf.krauss@intel.com>
src/drivers/driver_nl80211.c

index a37710e0d36b61dca3e585047146cc9301a8c23f..b6dd7f659c9093fc3bcc57bf5a67fb992968fc33 100644 (file)
@@ -1948,6 +1948,10 @@ static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
        if (nl80211_register_action_frame(bss, (u8 *) "\x11\x02", 2) < 0)
                return -1;
 
+       /* Radio Measurement - Neighbor Report Response */
+       if (nl80211_register_action_frame(bss, (u8 *) "\x05\x05", 2) < 0)
+               ret = -1;
+
        nl80211_mgmt_handle_register_eloop(bss);
 
        return ret;