From 8f14d11d661a313ab0a93a83680445c7fe2163c5 Mon Sep 17 00:00:00 2001 From: Jens Diemer Date: Wed, 14 May 2014 17:43:23 +0200 Subject: [PATCH] change default ListenAddress to "0.0.0.0:22000" --- cmd/syncthing/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/syncthing/config.go b/cmd/syncthing/config.go index 596f3f14..ae3af4d8 100644 --- a/cmd/syncthing/config.go +++ b/cmd/syncthing/config.go @@ -45,7 +45,7 @@ type NodeConfiguration struct { } type OptionsConfiguration struct { - ListenAddress []string `xml:"listenAddress" default:":22000"` + ListenAddress []string `xml:"listenAddress" default:"0.0.0.0:22000"` GlobalAnnServer string `xml:"globalAnnounceServer" default:"announce.syncthing.net:22025"` GlobalAnnEnabled bool `xml:"globalAnnounceEnabled" default:"true"` LocalAnnEnabled bool `xml:"localAnnounceEnabled" default:"true"`