Skip to content

Commit

Permalink
TUN-8147: Disable ECN usage due to bugs in detecting if supported
Browse files Browse the repository at this point in the history
  • Loading branch information
joliveirinha committed Jan 11, 2024
1 parent c7b2cce commit 25f91fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/cloudflared/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"fmt"
"math/rand"
"os"
"strings"
"time"

Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 25f91fe

Please sign in to comment.