From 273fac2028dc1aa464f6da6975f4fb490f69b586 Mon Sep 17 00:00:00 2001 From: Audrius Butkevicius Date: Sat, 17 Oct 2015 00:10:01 +0100 Subject: [PATCH] Change relaypoolsrv endpoint Just incase we want to show some stats in the future, such as a Geo-IP based map of where relays are, their dot size being proportional to global rate limits, together with potentially how much data in total has been transferred, and how many sessions there by crawling relay status pages etc ;) --- lib/config/config.go | 2 +- lib/config/config_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/config.go b/lib/config/config.go index 3243fe624..08c864330 100644 --- a/lib/config/config.go +++ b/lib/config/config.go @@ -249,7 +249,7 @@ type OptionsConfiguration struct { LocalAnnEnabled bool `xml:"localAnnounceEnabled" json:"localAnnounceEnabled" default:"true"` LocalAnnPort int `xml:"localAnnouncePort" json:"localAnnouncePort" default:"21027"` LocalAnnMCAddr string `xml:"localAnnounceMCAddr" json:"localAnnounceMCAddr" default:"[ff12::8384]:21027"` - RelayServers []string `xml:"relayServer" json:"relayServers" default:"dynamic+https://relays.syncthing.net"` + RelayServers []string `xml:"relayServer" json:"relayServers" default:"dynamic+https://relays.syncthing.net/endpoint"` MaxSendKbps int `xml:"maxSendKbps" json:"maxSendKbps"` MaxRecvKbps int `xml:"maxRecvKbps" json:"maxRecvKbps"` ReconnectIntervalS int `xml:"reconnectionIntervalS" json:"reconnectionIntervalS" default:"60"` diff --git a/lib/config/config_test.go b/lib/config/config_test.go index d19f0b90e..236cb7a45 100644 --- a/lib/config/config_test.go +++ b/lib/config/config_test.go @@ -37,7 +37,7 @@ func TestDefaultValues(t *testing.T) { LocalAnnEnabled: true, LocalAnnPort: 21027, LocalAnnMCAddr: "[ff12::8384]:21027", - RelayServers: []string{"dynamic+https://relays.syncthing.net"}, + RelayServers: []string{"dynamic+https://relays.syncthing.net/endpoint"}, MaxSendKbps: 0, MaxRecvKbps: 0, ReconnectIntervalS: 60,