Separate out mark setting for Windows

This commit is contained in:
Jason A. Donenfeld
2018-12-11 18:21:11 +01:00
parent 5ace0fdfe2
commit c967f15e44
3 changed files with 69 additions and 46 deletions

12
mark_default.go Normal file
View File

@@ -0,0 +1,12 @@
// +build !linux,!openbsd,!freebsd
/* SPDX-License-Identifier: GPL-2.0
*
* Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
*/
package main
func (bind *NativeBind) SetMark(mark uint32) error {
return nil
}