This is an automated email from the git hooks/post-receive script.
cohosh pushed a commit to branch main
in repository pluggable-transports/snowflake.
The following commit(s) were added to refs/heads/main by this push:
new a8829d4 Fix proxy command line help output
a8829d4 is described below
commit a8829d49b7bd315db08713abd4bf7396466d8b59
Author: Daniel Golle <daniel(a)makrotopia.org>
AuthorDate: Sun Sep 25 01:50:31 2022 +0100
Fix proxy command line help output
---
proxy/main.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/proxy/main.go b/proxy/main.go
index c42852e..563b3de 100644
--- a/proxy/main.go
+++ b/proxy/main.go
@@ -15,7 +15,7 @@ import (
func main() {
capacity := flag.Uint("capacity", 0, "maximum concurrent clients")
- stunURL := flag.String("stun", sf.DefaultSTUNURL, "broker URL")
+ stunURL := flag.String("stun", sf.DefaultSTUNURL, "STUN URL")
logFilename := flag.String("log", "", "log filename")
rawBrokerURL := flag.String("broker", sf.DefaultBrokerURL, "broker URL")
unsafeLogging := flag.Bool("unsafe-logging", false, "prevent logs from being scrubbed")
@@ -26,7 +26,7 @@ func main() {
NATTypeMeasurementInterval := flag.Duration("nat-retest-interval", time.Hour*24,
"the time interval in second before NAT type is retested, 0s disables retest. Valid time units are \"s\", \"m\", \"h\". ")
SummaryInterval := flag.Duration("summary-interval", time.Hour,
- "the time interval to output summary, 0s disables retest. Valid time units are \"s\", \"m\", \"h\". ")
+ "the time interval to output summary, 0s disables summaries. Valid time units are \"s\", \"m\", \"h\". ")
verboseLogging := flag.Bool("verbose", false, "increase log verbosity")
flag.Parse()
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.