Files

16 lines
247 B
Go
Raw Permalink Normal View History

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