From: Arik Nemtsov Date: Sat, 10 Dec 2011 19:01:36 +0000 (+0200) Subject: nl80211: Send Probe Response template to the driver X-Git-Tag: aosp-jb-start~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ed3354617fc252d16079c11203062c14049ac55;p=thirdparty%2Fhostap.git nl80211: Send Probe Response template to the driver Pass the raw Probe Response template to kernel via netlink using the set_ap() driver callback. The data is sent as one of the Beacon attributes. Signed-hostap: Arik Nemtsov Signed-off-by: Arik Nemtsov --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 50c4fa56f..a7ae166b8 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -5162,6 +5162,9 @@ static int wpa_driver_nl80211_set_ap(void *priv, NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period); NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len, params->ssid); + if (params->proberesp && params->proberesp_len) + NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len, + params->proberesp); switch (params->hide_ssid) { case NO_SSID_HIDING: NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,