aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Fifield <david@bamsoftware.com>2023-07-29 22:29:09 +0000
committerDavid Fifield <david@bamsoftware.com>2023-07-29 22:33:26 +0000
commit810473211404714a33d5edbb1d296e71656fe21d (patch)
tree7e72b39b40aa3282ee56e7627e640dbf611be221
parentd932cb2744afde266795cece6c4e761d2422aded (diff)
downloadsnowflake-810473211404714a33d5edbb1d296e71656fe21d.tar.gz
snowflake-810473211404714a33d5edbb1d296e71656fe21d.zip
Change DefaultRelayURL back to wss://snowflake.torproject.net/.
Fixes #40283. Compare to #31522.
-rw-r--r--proxy/README.md2
-rw-r--r--proxy/lib/snowflake.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/proxy/README.md b/proxy/README.md
index e26ef62..ac8d115 100644
--- a/proxy/README.md
+++ b/proxy/README.md
@@ -46,7 +46,7 @@ Usage of ./proxy:
-nat-retest-interval duration
the time interval in second before NAT type is retested, 0s disables retest. Valid time units are "s", "m", "h". (default 24h0m0s)
-relay string
- websocket relay URL (default "wss://snowflake.bamsoftware.com/")
+ websocket relay URL (default "wss://snowflake.torproject.net/")
-outbound-address string
bind a specific outbound address. Replace all host candidates with this address without validation.
-stun string
diff --git a/proxy/lib/snowflake.go b/proxy/lib/snowflake.go
index b46a9b4..97bea3e 100644
--- a/proxy/lib/snowflake.go
+++ b/proxy/lib/snowflake.go
@@ -54,7 +54,7 @@ import (
const (
DefaultBrokerURL = "https://snowflake-broker.torproject.net/"
DefaultNATProbeURL = "https://snowflake-broker.torproject.net:8443/probe"
- DefaultRelayURL = "wss://snowflake.bamsoftware.com/"
+ DefaultRelayURL = "wss://snowflake.torproject.net/"
DefaultSTUNURL = "stun:stun.l.google.com:19302"
DefaultProxyType = "standalone"
)