Files
wireguard-go/conn/features_default.go
T

16 lines
250 B
Go
Raw Normal View History

2023-10-02 13:53:07 -07:00
//go:build !linux
// +build !linux
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
*/
package conn
import "net"
func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) {
return
}