mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
detect kernel GSO support
This commit is contained in:
parent
4122eb7a7d
commit
3a3169551b
7 changed files with 30 additions and 7 deletions
|
@ -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 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue