You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tunneld/options.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ type options struct {
48
48
tlsKeystring
49
49
rootCAstring
50
50
clientsstring
51
+
keepAlivestring
51
52
logLevelint
52
53
versionbool
53
54
}
@@ -62,6 +63,7 @@ func parseArgs() *options {
62
63
tlsKey:=flag.String("tlsKey", "server.key", "Path to a TLS key file")
63
64
rootCA:=flag.String("rootCA", "", "Path to the trusted certificate chian used for client certificate authentication, if empty any client certificate is accepted")
64
65
clients:=flag.String("clients", "", "Comma-separated list of tunnel client ids, if empty accept all clients")
0 commit comments