diff options
author | Victor Goldenshtein <victorg@ti.com> | 2011-11-21 15:19:52 +0200 |
---|---|---|
committer | Arik Nemtsov <arik@wizery.com> | 2012-09-13 14:53:28 +0300 |
commit | ff0a677405533513777ed413abff97483f5fda6d (patch) | |
tree | 345897e5425f8e1aa37f39ce603163a3deec7998 /hostapd | |
parent | 7b65de18e8276ed3b5d2cbb64dc06c347f3b0e78 (diff) | |
download | external_wpa_supplicant_8_ti-ff0a677405533513777ed413abff97483f5fda6d.zip external_wpa_supplicant_8_ti-ff0a677405533513777ed413abff97483f5fda6d.tar.gz external_wpa_supplicant_8_ti-ff0a677405533513777ed413abff97483f5fda6d.tar.bz2 |
hostap: add channel switch ability to AP & GO (INTERNAL)
Add channel switch command and handle channel switch
request/complete events.
New hostapd_eid_csa() which builds the channel switch
announcement IE. Add this CSA to the beacon frame prior
performing a channel switch and remove it once it's
completed.
New EVENT_REQ_CH_SW which indicates that the driver
has requested to perform a channel switch.
Signed-hostap: Victor Goldenshtein <victorg@ti.com>
Diffstat (limited to 'hostapd')
-rw-r--r-- | hostapd/config_file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 03f82b2..59745fa 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -1441,6 +1441,8 @@ static int hostapd_config_fill(struct hostapd_config *conf, conf->country[2] = ' '; } else if (os_strcmp(buf, "ieee80211d") == 0) { conf->ieee80211d = atoi(pos); + } else if (os_strcmp(buf, "channel_switch_count") == 0) { + conf->channel_switch_count = atoi(pos); } else if (os_strcmp(buf, "ieee8021x") == 0) { bss->ieee802_1x = atoi(pos); } else if (os_strcmp(buf, "eapol_version") == 0) { |