This is an automated email from the git hooks/post-receive script.
itchyonion pushed a change to branch main in repository pluggable-transports/snowflake.
from 7c154e5 Bump version to v2.4.1 new cebe4a0 enhance help for capacity flag, fix #40208 new cbc5059 update README.md help output, fix #40232
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: proxy/README.md | 20 +++++++++++++++++--- proxy/main.go | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-)
This is an automated email from the git hooks/post-receive script.
itchyonion pushed a commit to branch main in repository pluggable-transports/snowflake.
commit cebe4a0af6777a157aea0ed6351471ea70826584 Author: Flo418 2645-Flo418@gitlab.torproject.org AuthorDate: Wed Nov 23 20:57:01 2022 +0100
enhance help for capacity flag, fix #40208 --- proxy/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxy/main.go b/proxy/main.go index 67274c7..d470f38 100644 --- a/proxy/main.go +++ b/proxy/main.go @@ -18,7 +18,7 @@ import ( )
func main() { - capacity := flag.Uint("capacity", 0, "maximum concurrent clients") + capacity := flag.Uint("capacity", 0, "maximum concurrent clients (default is to accept an unlimited number of clients)") stunURL := flag.String("stun", sf.DefaultSTUNURL, "STUN URL") logFilename := flag.String("log", "", "log filename") rawBrokerURL := flag.String("broker", sf.DefaultBrokerURL, "broker URL")
This is an automated email from the git hooks/post-receive script.
itchyonion pushed a commit to branch main in repository pluggable-transports/snowflake.
commit cbc50592d83455ecaaa78850d90b0fdee22344a5 Author: Flo418 2645-Flo418@gitlab.torproject.org AuthorDate: Wed Nov 23 21:23:04 2022 +0100
update README.md help output, fix #40232 --- proxy/README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/proxy/README.md b/proxy/README.md index c845aab..e4693d6 100644 --- a/proxy/README.md +++ b/proxy/README.md @@ -29,20 +29,34 @@ go build The Snowflake proxy can be run with the following options: ``` Usage of ./proxy: + -allow-non-tls-relay + allow relay without tls encryption + -allowed-relay-hostname-pattern string + a pattern to specify allowed hostname pattern for relay URL. (default "snowflake.torproject.net$") -broker string broker URL (default "https://snowflake-broker.torproject.net/") -capacity uint - maximum concurrent clients + maximum concurrent clients (default is to accept an unlimited number of clients) + -ephemeral-ports-range string + ICE UDP ephemeral ports range (format:"<min>:<max>") -keep-local-addresses keep local LAN address ICE candidates -log string log filename + -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.torproject.net/") + websocket relay URL (default "wss://snowflake.bamsoftware.com/") -stun string - stun URL (default "stun:stun.stunprotocol.org:3478") + STUN URL (default "stun:stun.stunprotocol.org:3478") + -summary-interval duration + the time interval to output summary, 0s disables summaries. Valid time units are "s", "m", "h". (default 1h0m0s) -unsafe-logging prevent logs from being scrubbed + -verbose + increase log verbosity + -version + display version info to stderr and quit ```
For more information on how to run a Snowflake proxy in deployment, see our [community documentation](https://community.torproject.org/relay/setup/snowflake/standalone/).
tor-commits@lists.torproject.org