mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-08-03 02:02:50 +02:00
15 lines
247 B
Go
15 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
|
|
}
|