1 //go:build !linux 2 // +build !linux 3 4 /* SPDX-License-Identifier: MIT 5 * 6 * Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved. 7 */ 8 9 package conn 10 11 import "net" 12 13 func supportsUDPOffload(_ *net.UDPConn) (txOffload, rxOffload bool) { 14 return 15 } 16