mirror of
https://github.com/slackhq/nebula.git
synced 2025-11-22 08:24:25 +01:00
16 lines
250 B
Go
16 lines
250 B
Go
//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
|
|
}
|