blob: 7149d691aab3158a2ff5be33ad839cafdf29146e (
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 main
func (bind *NativeBind) SetMark(mark uint32) error {
return nil
}
|