3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-25 17:59:25 +01:00

netconfig: Enable IPV6 support by default

This commit is contained in:
Denis Kenzior 2022-11-17 10:33:02 -06:00
parent 2f1c2930f0
commit 00baa75e96
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ The group ``[Network]`` contains network configuration related settings.
:align: left :align: left
* - EnableIPv6 * - EnableIPv6
- Values: true, **false** - Values: **true**, false
Sets the global default that tells **iwd** whether it should configure Sets the global default that tells **iwd** whether it should configure
IPv6 addresses and routes (either provided via static settings, IPv6 addresses and routes (either provided via static settings,

View File

@ -769,7 +769,7 @@ static int netconfig_init(void)
if (!l_settings_get_bool(iwd_get_config(), "Network", if (!l_settings_get_bool(iwd_get_config(), "Network",
"EnableIPv6", "EnableIPv6",
&ipv6_enabled)) &ipv6_enabled))
ipv6_enabled = false; ipv6_enabled = true;
mdns_global = l_settings_get_string(iwd_get_config(), "Network", mdns_global = l_settings_get_string(iwd_get_config(), "Network",
"MulticastDNS"); "MulticastDNS");