mirror of
https://git.zx2c4.com/wireguard-go
synced 2025-09-18 20:57:50 +02:00
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
|
|
}
|