1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 14:24:20 +03:00

mac80211: Allow preamble configuration

Add a new wireless config parameter short_preamble=0|1 to enable
usage of short preambles. Default is to only allow long preambles
as before.

Even if short_preamble is set to 1 hostapd will take care that
short preambles are disabled as soon as a STA associates that
cannot handle short preambles.

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30539 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2012-02-14 19:07:15 +00:00
parent d25d480741
commit 3412b9496c

View File

@ -16,6 +16,7 @@ mac80211_hostapd_setup_base() {
config_get beacon_int "$device" beacon_int config_get beacon_int "$device" beacon_int
config_get basic_rate_list "$device" basic_rate config_get basic_rate_list "$device" basic_rate
config_get_bool noscan "$device" noscan config_get_bool noscan "$device" noscan
config_get_bool short_preamble "$device" short_preamble "0"
hostapd_set_log_options base_cfg "$device" hostapd_set_log_options base_cfg "$device"
@ -77,6 +78,8 @@ mac80211_hostapd_setup_base() {
done done
} }
append base_cfg "preamble=$short_preamble" "$N"
cat >> "$cfgfile" <<EOF cat >> "$cfgfile" <<EOF
ctrl_interface=/var/run/hostapd-$phy ctrl_interface=/var/run/hostapd-$phy
driver=nl80211 driver=nl80211