mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
disable quic-go's ECN support by default (#4069)
This commit is contained in:
parent
fa977c839f
commit
8383d528d9
3 changed files with 9 additions and 0 deletions
|
|
@ -43,6 +43,10 @@ func init() {
|
|||
crypto.DefaultSalt = "frp"
|
||||
// Disable quic-go's receive buffer warning.
|
||||
os.Setenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING", "true")
|
||||
// Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
|
||||
if os.Getenv("QUIC_GO_DISABLE_ECN") == "" {
|
||||
os.Setenv("QUIC_GO_DISABLE_ECN", "true")
|
||||
}
|
||||
}
|
||||
|
||||
type cancelErr struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue