blob: 7de2524c01b5124e90b776a953b7a48f139ffd5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// +build !linux,!openbsd,!freebsd
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
package device
func (bind *nativeBind) SetMark(mark uint32) error {
return nil
}
|