60g fixes

This commit is contained in:
Maciej Krüger 2022-06-18 19:27:08 +02:00 committed by Alexander List
parent 0acfb2f2ba
commit 410a52e3a4
3 changed files with 8 additions and 3 deletions

View File

@ -234,7 +234,7 @@ local function configure_p2p(config, radio, index, suffix, disabled)
ssid = ssid,
mode = mode,
macaddr = macaddr,
mcast_rate = config.mcast_rate,
-- mcast_rate = config.mcast_rate,
ifname = suffix and 'p2p' .. suffix,
encryption = 'none',
disabled = disabled,

View File

@ -46,7 +46,12 @@ end
-- get all mesh radios and mesh lans and then add them to olsrd
wireless.foreach_radio(uci, function(radio, _, _)
local radio_name = radio['.name']
table.insert(intf.radio_mesh, 'mesh_' .. radio_name)
if uci:get('network', 'mesh_' .. radio_name, 'proto') then
table.insert(intf.radio_mesh, 'mesh_' .. radio_name)
end
if uci:get('network', 'p2p_' .. radio_name, 'proto') then
table.insert(intf.radio_mesh, 'p2p_' .. radio_name)
end
if uci:get('network', 'ibss_' .. radio_name, 'proto') then
table.insert(intf.radio_mesh, 'ibss_' .. radio_name)
end

View File

@ -128,7 +128,7 @@ uci:foreach('wireless', 'wifi-device', function(config)
local mode = p:option(ListValue, radio .. '_p2pmode', translate("P2P Mode"), translate("Master=AP Slave=Station"))
mode.default = uci:get('wireless', name6, 'mode') or 'ap'
mode:value('ap', translate('Master'))
mode:value('station', translate('Slave'))
mode:value('sta', translate('Slave'))
mode:depends(vif, true)
function mode:write(data)
uci:set('wireless', name6, 'mode', data)