Skip to content

Commit 25f91fe

Browse files
committed
TUN-8147: Disable ECN usage due to bugs in detecting if supported
1 parent c7b2cce commit 25f91fe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/cloudflared/main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package main
33
import (
44
"fmt"
55
"math/rand"
6+
"os"
67
"strings"
78
"time"
89

@@ -49,6 +50,9 @@ var (
4950
)
5051

5152
func main() {
53+
// FIXME: TUN-8148: Disable QUIC_GO ECN due to bugs in proper detection if supported
54+
os.Setenv("QUIC_GO_DISABLE_ECN", "1")
55+
5256
rand.Seed(time.Now().UnixNano())
5357
metrics.RegisterBuildInfo(BuildType, BuildTime, Version)
5458
maxprocs.Set()

0 commit comments

Comments
 (0)