developer | 7b43f2d | 2022-04-29 17:53:25 +0800 | [diff] [blame] | 1 | From dcedb231bc62949d458792530a14ceddfee20e96 Mon Sep 17 00:00:00 2001 |
| 2 | From: "howard.hsu" <howard-yh.hsu@mediatek.com> |
| 3 | Date: Wed, 19 Jan 2022 21:03:38 +0800 |
| 4 | Subject: [PATCH 5/9] Disable interface if BSS Termination TSF is set |
| 5 | |
| 6 | --- |
| 7 | src/ap/wnm_ap.c | 17 +++++++++++++++++ |
| 8 | 1 file changed, 17 insertions(+) |
| 9 | |
| 10 | diff --git a/src/ap/wnm_ap.c b/src/ap/wnm_ap.c |
| 11 | index b55b3f3..6eac3ac 100644 |
| 12 | --- a/src/ap/wnm_ap.c |
| 13 | +++ b/src/ap/wnm_ap.c |
| 14 | @@ -767,6 +767,22 @@ static void set_disassoc_timer(struct hostapd_data *hapd, struct sta_info *sta, |
| 15 | } |
| 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) |
| 37 | @@ -856,6 +872,7 @@ int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta, |
| 38 | 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 | -- |
| 46 | 2.18.0 |
| 47 | |