detect kernel GSO support

This commit is contained in:
Marten Seemann 2023-07-30 16:31:30 -04:00
parent 4122eb7a7d
commit 3a3169551b
7 changed files with 30 additions and 7 deletions

View file

@ -4,6 +4,7 @@ package quic
import (
"net/netip"
"syscall"
"golang.org/x/sys/unix"
)
@ -24,3 +25,5 @@ func parseIPv4PktInfo(body []byte) (ip netip.Addr, _ uint32, ok bool) {
}
return netip.AddrFrom4(*(*[4]byte)(body)), 0, true
}
func isGSOSupported(syscall.RawConn) bool { return false }