mirror of
https://github.com/coolsnowwolf/luci
synced 2025-01-07 07:06:41 +08:00
wifi: add Beacon Interval option
This commit is contained in:
parent
4d283c1666
commit
b8ad28231e
@ -4126,3 +4126,6 @@ msgstr "高性能模式"
|
||||
|
||||
msgid "Target Platform"
|
||||
msgstr "目标平台"
|
||||
|
||||
msgid "Beacon Interval"
|
||||
msgstr "Beacon间隔"
|
||||
|
@ -262,6 +262,11 @@ if hwtype == "mac80211" then
|
||||
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
|
||||
o = s:taboption("advanced", Value, "beacon_int", translate('Beacon Interval'));
|
||||
o.datatype = 'range(15,65535)';
|
||||
o.placeholder = 100;
|
||||
o.rmempty = true;
|
||||
end
|
||||
|
||||
|
||||
@ -385,6 +390,11 @@ if hwtype == "mt_dbdc" then
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
s:taboption("advanced", Flag, "txburst", translate("TX Bursting"))
|
||||
|
||||
o = s:taboption("advanced", Value, "beacon_int", translate('Beacon Interval'));
|
||||
o.datatype = 'range(15,65535)';
|
||||
o.placeholder = 100;
|
||||
o.rmempty = true;
|
||||
end
|
||||
|
||||
----------------------- Interface -----------------------
|
||||
|
Loading…
Reference in New Issue
Block a user