blob: f6832e3e3940d050133b5b9cd48b8572dafdf4bf [file] [log] [blame]
From 56613ad9b568a3ac7467105beaa162c68ffbbf70 Mon Sep 17 00:00:00 2001
From: "howard.hsu" <howard-yh.hsu@mediatek.com>
Date: Wed, 19 Jan 2022 20:20:03 +0800
Subject: [PATCH 4/9] Support configuring BSS Termination TSF by using
hostapd_cli command
---
hostapd/ctrl_iface.c | 9 +++++++++
src/ap/ap_config.c | 1 +
src/ap/ap_config.h | 1 +
3 files changed, 11 insertions(+)
diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
index f50fafb..1b5a091 100644
--- a/hostapd/ctrl_iface.c
+++ b/hostapd/ctrl_iface.c
@@ -954,6 +954,10 @@ static int hostapd_ctrl_iface_bss_tm_req(struct hostapd_data *hapd,
wpa_printf(MSG_DEBUG, "Invalid bss_term data");
return -1;
}
+ if (hapd->conf->bss_termination_tsf) {
+ WPA_PUT_LE64(&bss_term_dur[2], hapd->conf->bss_termination_tsf);
+ }
+
end++;
WPA_PUT_LE16(&bss_term_dur[10], atoi(end));
}
@@ -1589,6 +1593,11 @@ static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
#endif /* CONFIG_DPP */
} else if (os_strcasecmp(cmd, "setband") == 0) {
ret = hostapd_ctrl_iface_set_band(hapd, value);
+ } else if (os_strcasecmp(cmd, "bss_termination_tsf") == 0) {
+ int termination_sec = atoi(value);
+ hapd->conf->bss_termination_tsf = termination_sec;
+ wpa_printf(MSG_DEBUG, "BSS Termination TSF: value = %d",
+ termination_sec);
} else {
ret = hostapd_set_iface(hapd->iconf, hapd->conf, cmd, value);
if (ret)
diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c
index 1f04686..078a3fc 100644
--- a/src/ap/ap_config.c
+++ b/src/ap/ap_config.c
@@ -170,6 +170,7 @@ void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
/* comeback after 10 TUs */
bss->pasn_comeback_after = 10;
#endif /* CONFIG_PASN */
+ bss->bss_termination_tsf = 0;
}
diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
index f3aff36..7301bbb 100644
--- a/src/ap/ap_config.h
+++ b/src/ap/ap_config.h
@@ -549,6 +549,7 @@ struct hostapd_bss_config {
int wnm_sleep_mode;
int wnm_sleep_mode_no_keys;
int bss_transition;
+ unsigned int bss_termination_tsf;
/* IEEE 802.11u - Interworking */
int interworking;
--
2.18.0