aboutsummaryrefslogtreecommitdiffstats
path: root/mark_default.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-12-11 18:21:11 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-12-11 18:29:46 +0100
commitc967f15e443a5953429000e50fad2e117992b72d (patch)
treef4306016fe4224bbc4a0fb8988af6dc23d66f1cc /mark_default.go
parentUse upstream's xchacha20poly1305 (diff)
downloadwireguard-go-c967f15e443a5953429000e50fad2e117992b72d.tar.xz
wireguard-go-c967f15e443a5953429000e50fad2e117992b72d.zip
Separate out mark setting for Windows
Diffstat (limited to 'mark_default.go')
-rw-r--r--mark_default.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/mark_default.go b/mark_default.go
new file mode 100644
index 0000000..7062606
--- /dev/null
+++ b/mark_default.go
@@ -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
+}