summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-03-07 12:19:16 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2024-03-07 12:19:16 +0100
commit7b708040dd56c413ecfe9d7685260ad88373dbc3 (patch)
treebf0c40f019be93a4145e2de0dc4166c1e2910fdb /internal
parenta1405177a14f76c5406fe6375f2622037153a3ac (diff)
Server: Remove obsolete TODO
Diffstat (limited to 'internal')
-rw-r--r--internal/server/server.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/server/server.go b/internal/server/server.go
index abe5178..d622aef 100644
--- a/internal/server/server.go
+++ b/internal/server/server.go
@@ -126,7 +126,6 @@ func (s *Server) connect(ctx context.Context, wgSupport bool, pTCP bool) (*srvty
}
// If the client supports WireGuard and the profile supports both protocols we remove openvpn from client support if EDUVPN_PREFER_WG is set to "1"
// This also only happens if prefer TCP is set to false
- // TODO: remove the prefer TCP check when we have implemented proxyguard
if wgSupport && os.Getenv("EDUVPN_PREFER_WG") == "1" {
if chosenP.HasWireGuard() && chosenP.HasOpenVPN() {
protos = []protocol.Protocol{protocol.WireGuard}