mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 22:09:23 +01:00
treewide: Use CamelCase for disable_anqp setting
This commit is contained in:
parent
27afe6c49f
commit
d12ee292aa
@ -111,7 +111,7 @@ class Test(unittest.TestCase):
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('autoconnect.conf')
|
||||
IWD.copy_to_storage('ssidWPA2-1.psk')
|
||||
conf = '[General]\ndisable_anqp=0\n'
|
||||
conf = '[General]\nDisableANQP=0\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
|
@ -58,7 +58,7 @@ class Test(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('hessid.conf')
|
||||
conf = '[General]\ndisable_anqp=1\n'
|
||||
conf = '[General]\nDisableANQP=1\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
|
@ -58,7 +58,7 @@ class Test(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('example.conf')
|
||||
conf = '[General]\ndisable_anqp=0\n'
|
||||
conf = '[General]\nDisableANQP=0\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
|
@ -58,7 +58,7 @@ class Test(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('roaming.conf')
|
||||
conf = '[General]\ndisable_anqp=1\n'
|
||||
conf = '[General]\nDisableANQP=1\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
|
@ -134,7 +134,7 @@ class Test(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('example.conf')
|
||||
conf = '[General]\ndisable_anqp=0\n'
|
||||
conf = '[General]\nDisableANQP=0\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
|
@ -43,4 +43,4 @@ IWD which allows the user to disable ANQP. As a result, this will also disable
|
||||
any hotspot 2.0 network connections unless the HESSID is provided in the
|
||||
configuration file. By default ANQP will be disabled. It can be enabled with:
|
||||
|
||||
disable_anqp=0
|
||||
DisableANQP=0
|
||||
|
@ -57,6 +57,7 @@
|
||||
static struct l_queue *station_list;
|
||||
static uint32_t netdev_watch;
|
||||
static uint32_t mfp_setting;
|
||||
static bool anqp_disabled;
|
||||
|
||||
struct station {
|
||||
enum station_state state;
|
||||
@ -507,7 +508,6 @@ static bool station_start_anqp(struct station *station, struct network *network,
|
||||
uint8_t anqp[256];
|
||||
uint8_t *ptr = anqp;
|
||||
struct anqp_entry *entry;
|
||||
bool anqp_disabled = true;
|
||||
|
||||
if (!bss->hs20_capable)
|
||||
return false;
|
||||
@ -516,9 +516,6 @@ static bool station_start_anqp(struct station *station, struct network *network,
|
||||
if (network_get_info(network))
|
||||
return false;
|
||||
|
||||
l_settings_get_bool(iwd_get_config(), "General", "disable_anqp",
|
||||
&anqp_disabled);
|
||||
|
||||
if (anqp_disabled) {
|
||||
l_debug("Not querying AP for ANQP data (disabled)");
|
||||
return false;
|
||||
@ -3192,6 +3189,10 @@ static int station_init(void)
|
||||
mfp_setting = 1;
|
||||
}
|
||||
|
||||
if (!l_settings_get_bool(iwd_get_config(), "General", "DisableANQP",
|
||||
&anqp_disabled))
|
||||
anqp_disabled = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -931,7 +931,7 @@ static void wiphy_set_station_capability_bits(struct wiphy *wiphy)
|
||||
|
||||
ext_capa = wiphy->iftype_extended_capabilities[NL80211_IFTYPE_STATION];
|
||||
|
||||
if (!l_settings_get_bool(iwd_get_config(), "General", "disable_anqp",
|
||||
if (!l_settings_get_bool(iwd_get_config(), "General", "DisableANQP",
|
||||
&anqp_disabled))
|
||||
anqp_disabled = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user