mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +01:00
treewide: Use CamelCase for [Scan] settings
This commit is contained in:
parent
3a0c70210d
commit
e540978633
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
# Discovery of the hidden networks with randomization flag set works with real
|
# Discovery of the hidden networks with randomization flag set works with real
|
||||||
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
||||||
# Disable MAC randomization for the tests with hidden networks.
|
# Disable MAC randomization for the tests with hidden networks.
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
[Scan]
|
[Scan]
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -3,4 +3,4 @@
|
|||||||
# Discovery of the hidden networks with randomization flag set works with real
|
# Discovery of the hidden networks with randomization flag set works with real
|
||||||
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
# hardware, but fails when used in simulated environment with mac80211_hwsim.
|
||||||
# Disable MAC randomization for the tests with hidden networks.
|
# Disable MAC randomization for the tests with hidden networks.
|
||||||
disable_mac_address_randomization=true
|
DisableMacAddressRandomization=true
|
||||||
|
@ -271,7 +271,7 @@ static bool scan_mac_address_randomization_is_disabled(void)
|
|||||||
bool disabled;
|
bool disabled;
|
||||||
|
|
||||||
if (!l_settings_get_bool(config, "Scan",
|
if (!l_settings_get_bool(config, "Scan",
|
||||||
"disable_mac_address_randomization",
|
"DisableMacAddressRandomization",
|
||||||
&disabled))
|
&disabled))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@ -641,7 +641,7 @@ static bool scan_periodic_is_disabled(void)
|
|||||||
const struct l_settings *config = iwd_get_config();
|
const struct l_settings *config = iwd_get_config();
|
||||||
bool disabled;
|
bool disabled;
|
||||||
|
|
||||||
if (!l_settings_get_bool(config, "Scan", "disable_periodic_scan",
|
if (!l_settings_get_bool(config, "Scan", "DisablePeriodicScan",
|
||||||
&disabled))
|
&disabled))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -1975,7 +1975,7 @@ static bool station_cannot_roam(struct station *station)
|
|||||||
const struct l_settings *config = iwd_get_config();
|
const struct l_settings *config = iwd_get_config();
|
||||||
bool disabled;
|
bool disabled;
|
||||||
|
|
||||||
if (!l_settings_get_bool(config, "Scan", "disable_roaming_scan",
|
if (!l_settings_get_bool(config, "Scan", "DisableRoamingScan",
|
||||||
&disabled))
|
&disabled))
|
||||||
disabled = false;
|
disabled = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user