Browse Source

upd doc and help

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

+ 3 - 0
README.md

@@ -66,9 +66,12 @@ Usage:
 dtlspipe [OPTION]... server <BIND ADDRESS> <REMOTE ADDRESS>
 dtlspipe [OPTION]... client <BIND ADDRESS> <REMOTE ADDRESS>
 dtlspipe [OPTION]... genpsk
+dtlspipe ciphers
 dtlspipe version
 
 Options:
+  -ciphers value
+    	colon-separated list of ciphers to use
   -cpuprofile string
     	write cpu profile to file
   -identity string

+ 2 - 1
cmd/dtlspipe/main.go

@@ -56,7 +56,7 @@ var (
 )
 
 func init() {
-	flag.Var(&ciphersuites, "ciphers", "comma-separated list of ciphers to use")
+	flag.Var(&ciphersuites, "ciphers", "colon-separated list of ciphers to use")
 }
 
 func usage() {
@@ -66,6 +66,7 @@ func usage() {
 	fmt.Fprintf(out, "%s [OPTION]... server <BIND ADDRESS> <REMOTE ADDRESS>\n", ProgName)
 	fmt.Fprintf(out, "%s [OPTION]... client <BIND ADDRESS> <REMOTE ADDRESS>\n", ProgName)
 	fmt.Fprintf(out, "%s [OPTION]... genpsk\n", ProgName)
+	fmt.Fprintf(out, "%s ciphers\n", ProgName)
 	fmt.Fprintf(out, "%s version\n", ProgName)
 	fmt.Fprintln(out)
 	fmt.Fprintln(out, "Options:")