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