disable GSO unless QUIC_GO_ENABLE_GSO is set (#3934)

This commit is contained in:
Marten Seemann 2023-07-01 10:09:32 -07:00 committed by GitHub
parent 2f872ea0fb
commit 4998733ae1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -39,8 +39,8 @@ func setDF(rawConn syscall.RawConn) (bool, error) {
}
func maybeSetGSO(rawConn syscall.RawConn) bool {
disable, _ := strconv.ParseBool(os.Getenv("QUIC_GO_DISABLE_GSO"))
if disable {
enable, _ := strconv.ParseBool(os.Getenv("QUIC_GO_ENABLE_GSO"))
if !enable {
return false
}