From 2526ccd95acd35700b894241f1d250b637b9c3c4 Mon Sep 17 00:00:00 2001 From: Assaf Krauss Date: Wed, 5 Nov 2014 03:42:49 -0500 Subject: [PATCH] nl80211: Register Neighbor Report Response Action frame Add Neighbor Report Response Action frame to registration of Action frames to be handled by wpa_supplicant. Signed-off-by: Assaf Krauss --- src/drivers/driver_nl80211.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index a37710e0d..b6dd7f659 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -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;