diff --git a/owntone.conf.in b/owntone.conf.in index 32c54de3..a22447f3 100644 --- a/owntone.conf.in +++ b/owntone.conf.in @@ -45,7 +45,7 @@ general { # trusted_networks = { "localhost", "192.168", "fd" } # Enable/disable IPv6 - ipv6 = yes +# ipv6 = no # Set this if you want the server to bind to a specific IP address. Can # be ipv6 or ipv4. Default (commented out or "::") is to listen on all diff --git a/src/conffile.c b/src/conffile.c index b8b88634..68d20df1 100644 --- a/src/conffile.c +++ b/src/conffile.c @@ -53,7 +53,7 @@ static cfg_opt_t sec_general[] = CFG_INT("websocket_port", 3688, CFGF_NONE), CFG_STR("websocket_interface", NULL, CFGF_NONE), CFG_STR_LIST("trusted_networks", "{localhost,192.168,fd}", CFGF_NONE), - CFG_BOOL("ipv6", cfg_true, CFGF_NONE), + CFG_BOOL("ipv6", cfg_false, CFGF_NONE), CFG_STR("bind_address", NULL, CFGF_NONE), CFG_STR("cache_path", STATEDIR "/cache/" PACKAGE "/cache.db", CFGF_NONE), CFG_INT("cache_daap_threshold", 1000, CFGF_NONE),