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
+27-24Lines changed: 27 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -39,18 +39,19 @@ func init() {
39
39
40
40
// options specify arguments read command line arguments.
41
41
typeoptionsstruct {
42
-
httpAddrstring
43
-
httpsAddrstring
44
-
tunnelAddrstring
45
-
apiAddrstring
46
-
sniAddrstring
47
-
tlsCrtstring
48
-
tlsKeystring
49
-
rootCAstring
50
-
clientsstring
51
-
keepAlivestring
52
-
logLevelint
53
-
versionbool
42
+
httpAddrstring
43
+
httpsAddrstring
44
+
tunnelAddrstring
45
+
apiAddrstring
46
+
sniAddrstring
47
+
tlsCrtstring
48
+
tlsKeystring
49
+
rootCAstring
50
+
clientsstring
51
+
keepAlivestring
52
+
debounceLogint
53
+
logLevelint
54
+
versionbool
54
55
}
55
56
56
57
funcparseArgs() *options {
@@ -64,22 +65,24 @@ func parseArgs() *options {
64
65
rootCA:=flag.String("rootCA", "", "Path to the trusted certificate chian used for client certificate authentication, if empty any client certificate is accepted")
65
66
clients:=flag.String("clients", "", "Comma-separated list of tunnel client ids, if empty accept all clients")
0 commit comments