aboutsummaryrefslogtreecommitdiffstats
path: root/conn/features_default.go
blob: d53ff5f7b6c066838b5fd2a00654900e2c780659 (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-2023 WireGuard LLC. All Rights Reserved.
 */

package conn

import "net"

func supportsUDPOffload(conn *net.UDPConn) (txOffload, rxOffload bool) {
	return
}