summaryrefslogtreecommitdiff
path: root/cmd/cli/main.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-04 14:53:58 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-04 14:53:58 +0200
commit762a034cc1af55d09dc0a174947356e36bf15569 (patch)
tree4c29d0ebd131a919accc944599d3c10ba61b09d2 /cmd/cli/main.go
parent0096d0471fef972e305a61435623d64b7da4f0d9 (diff)
Server: Implement `prefer_tcp` according to spec
Diffstat (limited to 'cmd/cli/main.go')
-rw-r--r--cmd/cli/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cli/main.go b/cmd/cli/main.go
index ab5d659..8bc083d 100644
--- a/cmd/cli/main.go
+++ b/cmd/cli/main.go
@@ -95,7 +95,7 @@ func getConfig(state *eduvpn.VPNState, url string, serverType ServerTypes) (stri
if !strings.HasPrefix(url, "http") {
url = "https://" + url
}
- // Force TCP is set to False
+ // Prefer TCP is set to False
if serverType == ServerTypeInstituteAccess {
return state.GetConfigInstituteAccess(url, false)
} else if serverType == ServerTypeCustom {