blob: 7334217780c50fc9b490d1e9fcdf1340473414a4 [file] [log] [blame]
developerea1a48c2022-11-21 11:36:55 +08001From cdd0a088a13000d67a5bd821a609546f8b79c7e0 Mon Sep 17 00:00:00 2001
developerfaf1ea22022-04-29 17:53:25 +08002From: "howard.hsu" <howard-yh.hsu@mediatek.com>
3Date: Wed, 19 Jan 2022 21:03:38 +0800
developerea1a48c2022-11-21 11:36:55 +08004Subject: [PATCH 99904/99917] Disable interface if BSS Termination TSF is set
developerfaf1ea22022-04-29 17:53:25 +08005
6---
7 src/ap/wnm_ap.c | 17 +++++++++++++++++
8 1 file changed, 17 insertions(+)
9
10diff --git a/src/ap/wnm_ap.c b/src/ap/wnm_ap.c
developerea1a48c2022-11-21 11:36:55 +080011index 532d9db..f6761ab 100644
developerfaf1ea22022-04-29 17:53:25 +080012--- a/src/ap/wnm_ap.c
13+++ b/src/ap/wnm_ap.c
developer842205d2022-09-22 17:12:54 +080014@@ -780,6 +780,22 @@ static void set_disassoc_timer(struct hostapd_data *hapd, struct sta_info *sta,
developerfaf1ea22022-04-29 17:53:25 +080015 }
16
17
18+void bss_termination_disable_iface(void *eloop_ctx, void *timeout_ctx)
19+{
20+ struct hostapd_data *hapd = eloop_ctx;
21+ hostapd_disable_iface(hapd->iface);
22+}
23+
24+
25+static void set_disable_iface_timer(struct hostapd_data *hapd, struct sta_info *sta,
26+ int disable_iface_timer)
27+{
28+ wpa_printf(MSG_DEBUG, "Disable interface timer set to %d secs", disable_iface_timer);
29+ eloop_register_timeout(disable_iface_timer, 0,
30+ bss_termination_disable_iface, hapd, NULL);
31+}
32+
33+
34 int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd,
35 struct sta_info *sta, const char *url,
36 int disassoc_timer)
developer842205d2022-09-22 17:12:54 +080037@@ -869,6 +885,7 @@ int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta,
developerfaf1ea22022-04-29 17:53:25 +080038 bss_term_dur) {
39 os_memcpy(pos, bss_term_dur, 12);
40 pos += 12;
41+ set_disable_iface_timer(hapd, sta, hapd->conf->bss_termination_tsf);
42 }
43
44 if (url) {
45--
developerea1a48c2022-11-21 11:36:55 +0800462.36.1
developerfaf1ea22022-04-29 17:53:25 +080047