77b6c824a8
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
16 lines
247 B
Go
16 lines
247 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package conn
|
|
|
|
import "net"
|
|
|
|
func supportsUDPOffload(_ *net.UDPConn) (txOffload, rxOffload bool) {
|
|
return
|
|
}
|