aboutsummaryrefslogtreecommitdiffstats
path: root/conn/features_default.go
blob: 9fc5088e21b86f30b3fb04321d4b1530f1cd1841 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//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
}