commit 57c0724491ecab7abb2d57067fe762de48bc0d6a Author: David Fifield david@bamsoftware.com Date: Sun Mar 27 12:49:20 2016 -0700
Use 192.81.135.242:9902 as the default relay.
This is the relay that reports using the transport name "snowflake". https://bugs.torproject.org/18627 --- proxy/README.md | 2 +- proxy/snowflake.coffee | 2 +- server/server.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/proxy/README.md b/proxy/README.md index 0398d3d..4686783 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -23,7 +23,7 @@ To run locally, either: ### Parameters
With no parameters, -snowflake uses the default relay `192.81.135.242:9901` and +snowflake uses the default relay `192.81.135.242:9902` and uses automatic signaling with the default broker at `https://snowflake-reg.appspot.com/%60.
diff --git a/proxy/snowflake.coffee b/proxy/snowflake.coffee index 7e26481..a96dbdf 100644 --- a/proxy/snowflake.coffee +++ b/proxy/snowflake.coffee @@ -10,7 +10,7 @@ this must always act as the answerer. DEFAULT_BROKER = 'snowflake-reg.appspot.com' DEFAULT_RELAY = host: '192.81.135.242' - port: 9901 + port: 9902 COPY_PASTE_ENABLED = false
DEBUG = false diff --git a/server/server.go b/server/server.go index c424c29..fc41364 100644 --- a/server/server.go +++ b/server/server.go @@ -4,7 +4,7 @@ // // Usage in torrc: // ExtORPort auto -// ServerTransportPlugin snowflake exec server --port 9901 +// ServerTransportPlugin snowflake exec server --port 9902 package main
import (
tor-commits@lists.torproject.org