From 25f91fec1094cc032702cb23e5d463ed67207321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveirinha?= Date: Thu, 11 Jan 2024 10:35:25 +0000 Subject: [PATCH] TUN-8147: Disable ECN usage due to bugs in detecting if supported --- cmd/cloudflared/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/cloudflared/main.go b/cmd/cloudflared/main.go index 3ed25a62..4b2941fc 100644 --- a/cmd/cloudflared/main.go +++ b/cmd/cloudflared/main.go @@ -3,6 +3,7 @@ package main import ( "fmt" "math/rand" + "os" "strings" "time" @@ -49,6 +50,9 @@ var ( ) func main() { + // FIXME: TUN-8148: Disable QUIC_GO ECN due to bugs in proper detection if supported + os.Setenv("QUIC_GO_DISABLE_ECN", "1") + rand.Seed(time.Now().UnixNano()) metrics.RegisterBuildInfo(BuildType, BuildTime, Version) maxprocs.Set()