From a3c21aee84d8de1aba1e5e7eaa1208ba6e1f11c6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 21 Jul 2015 01:04:03 +0200 Subject: [PATCH] bye bye Unix. An IPv4 or IPv6 address query for the name localhost must always resolve to the respective loopback address [rfc6761]. According to several users, apparently chromebook and OSX `host localhost` fails but configuring 127.0.0.1 works. (maybe a DNS/DHCP issue?! or ipv6) --- libs/ardour/ardour/rc_configuration_vars.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/rc_configuration_vars.h b/libs/ardour/ardour/rc_configuration_vars.h index 5bd23f16b1..afa74325c0 100644 --- a/libs/ardour/ardour/rc_configuration_vars.h +++ b/libs/ardour/ardour/rc_configuration_vars.h @@ -260,7 +260,7 @@ CONFIG_VARIABLE (std::string, donate_url, "donate-url", "http://ardour.org/donat /* video timeline configuration */ CONFIG_VARIABLE (bool, video_advanced_setup, "video-advanced-setup", false) -CONFIG_VARIABLE (std::string, video_server_url, "video-server-url", "http://localhost:1554") +CONFIG_VARIABLE (std::string, video_server_url, "video-server-url", "http://127.0.0.1:1554") #ifndef PLATFORM_WINDOWS CONFIG_VARIABLE (std::string, video_server_docroot, "video-server-docroot", "/") #else