Vladislav Yarmak 1 year ago
parent
commit
8a05400dc3
2 changed files with 3 additions and 1 deletions
  1. 2 0
      README.md
  2. 1 1
      cmd/dtlspipe/main.go

+ 2 - 0
README.md

@@ -89,6 +89,8 @@ Options:
     	hex-encoded pre-shared key. Can be generated with genpsk subcommand
   -skip-hello-verify
     	(server only) skip hello verify request. Useful to workaround DPI
+  -stale-mode value
+    	which stale side of connection makes whole session stale (both, either, left, right) (default either)
   -timeout duration
     	network operation timeout (default 10s)
 ```

+ 1 - 1
cmd/dtlspipe/main.go

@@ -77,7 +77,7 @@ var (
 func init() {
 	flag.Var(&ciphersuites, "ciphers", "colon-separated list of ciphers to use")
 	flag.Var(&curves, "curves", "colon-separated list of curves to use")
-	flag.Var(&staleMode, "stale-mode", "which stale side of connection makes whole session stale")
+	flag.Var(&staleMode, "stale-mode", "which stale side of connection makes whole session stale (both, either, left, right)")
 }
 
 func usage() {