diff options
author | Jouni Malinen <j@w1.fi> | 2012-05-27 17:35:00 -0700 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2012-05-27 17:35:00 -0700 |
commit | b6668734ab8ac235f129d1cd0aff4c4e1c922b41 (patch) | |
tree | 7a5932a36263cda9417dd9efc86bacbbade1c822 /hostapd | |
parent | b80eb89d8e21eb699d847bec226d897d9e92e0b8 (diff) | |
download | external_wpa_supplicant_8_ti-b6668734ab8ac235f129d1cd0aff4c4e1c922b41.zip external_wpa_supplicant_8_ti-b6668734ab8ac235f129d1cd0aff4c4e1c922b41.tar.gz external_wpa_supplicant_8_ti-b6668734ab8ac235f129d1cd0aff4c4e1c922b41.tar.bz2 |
WNM: Add advertisement of BSS max idle period
If WNM is enabled for the build (CONFIG_WNM=y), add BSS max idle period
information to the (Re)Association Response frame from the AP and parse
this information on the station. For SME-in-wpa_supplicant case, add a
timer to handle periodic transmission of the keep-alive frame. The
actual request for the driver to transmit a frame is not yet
implemented.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/Makefile | 4 | ||||
-rw-r--r-- | hostapd/defconfig | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/hostapd/Makefile b/hostapd/Makefile index 9e42d03..2a82920 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -169,6 +169,10 @@ ifdef CONFIG_IEEE80211N CFLAGS += -DCONFIG_IEEE80211N endif +ifdef CONFIG_WNM +CFLAGS += -DCONFIG_WNM +endif + include ../src/drivers/drivers.mak OBJS += $(DRV_AP_OBJS) CFLAGS += $(DRV_AP_CFLAGS) diff --git a/hostapd/defconfig b/hostapd/defconfig index 3cf0d13..dea296c 100644 --- a/hostapd/defconfig +++ b/hostapd/defconfig @@ -136,6 +136,10 @@ CONFIG_IPV6=y # IEEE 802.11n (High Throughput) support #CONFIG_IEEE80211N=y +# Wireless Network Management (IEEE Std 802.11v-2011) +# Note: This is experimental and not complete implementation. +#CONFIG_WNM=y + # Remove debugging code that is printing out debug messages to stdout. # This can be used to reduce the size of the hostapd considerably if debugging # code is not needed. |