Skip to content

Commit c54c306

Browse files
committed
fix
1 parent 8058ebe commit c54c306

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ Usage of /home/user/go/bin/dumbproxy:
648648
mark TLS sessions with cookie-like unique session IDs (default true)
649649
-tls-session-key value
650650
override TLS server session keys. Key must be provided as hex-encoded 32-byte string. This option can be repeated multiple times, first key will be used to create session tickets. Empty value resets the list.
651-
-tls-ticket-cache-db string
651+
-tls-session-cache-db string
652652
location of TLS client session cache DB
653653
-trusttunnel
654654
enable TrustTunnel protocol extensions (default true)

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ func parse_args() *CLIArgs {
508508
return nil
509509
})
510510
flag.BoolVar(&args.tlsCookies, "tls-cookies", true, "mark TLS sessions with cookie-like unique session IDs")
511-
flag.StringVar(&args.tlsSessionCacheDB, "tls-ticket-cache-db", "", "location of TLS client session cache DB")
511+
flag.StringVar(&args.tlsSessionCacheDB, "tls-session-cache-db", "", "location of TLS client session cache DB")
512512
flag.Func("config", "read configuration from file with space-separated keys and values", readConfig)
513513
flag.Parse()
514514
// pull up remaining parameters from other BW-related arguments

0 commit comments

Comments
 (0)