mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
disable GSO unless QUIC_GO_ENABLE_GSO is set (#3934)
This commit is contained in:
parent
2f872ea0fb
commit
4998733ae1
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue