gitee.com/aurawing/surguard-go@v0.3.1-0.20240409071558-96509a61ecf3/conn/features_default.go (about) 1 //go:build !linux 2 // +build !linux 3 4 /* SPDX-License-Identifier: MIT 5 * 6 * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. 7 */ 8 9 package conn 10 11 import "net" 12 13 func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) { 14 return 15 }