blob: 3c9b223575703465f2cb6f2bc658980c699f9da3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
//go:build !linux
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved.
*/
package conn
func errShouldDisableUDPGSO(_ error) bool {
return false
}
|