aboutsummaryrefslogtreecommitdiffstats
path: root/conn/features_linux.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--conn/features_linux.go10
1 files changed, 2 insertions, 8 deletions
diff --git a/conn/features_linux.go b/conn/features_linux.go
index e1fb57f..8959d93 100644
--- a/conn/features_linux.go
+++ b/conn/features_linux.go
@@ -18,15 +18,9 @@ func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) {
}
err = rc.Control(func(fd uintptr) {
_, errSyscall := unix.GetsockoptInt(int(fd), unix.IPPROTO_UDP, unix.UDP_SEGMENT)
- if errSyscall != nil {
- return
- }
- txOffload = true
+ txOffload = errSyscall == nil
opt, errSyscall := unix.GetsockoptInt(int(fd), unix.IPPROTO_UDP, unix.UDP_GRO)
- if errSyscall != nil {
- return
- }
- rxOffload = opt == 1
+ rxOffload = errSyscall == nil && opt == 1
})
if err != nil {
return false, false