|
@@ -2512,6 +2512,9 @@ broken_combination:
|
|
|
|
|
|
if (flags & NL80211_FEATURE_SK_TX_STATUS)
|
|
|
info->data_tx_status = 1;
|
|
|
+
|
|
|
+ if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
|
|
|
+ capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
|
|
|
}
|
|
|
|
|
|
if (tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]) {
|
|
@@ -5415,6 +5418,11 @@ static int wpa_driver_nl80211_set_ap(void *priv,
|
|
|
wpabuf_head(params->assocresp_ies));
|
|
|
}
|
|
|
|
|
|
+ if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER) {
|
|
|
+ NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
|
|
|
+ params->ap_max_inactivity);
|
|
|
+ }
|
|
|
+
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
if (ret) {
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
|