aboutsummaryrefslogtreecommitdiffstats
path: root/conn/mark_default.go
diff options
context:
space:
mode:
Diffstat (limited to 'conn/mark_default.go')
-rw-r--r--conn/mark_default.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/conn/mark_default.go b/conn/mark_default.go
new file mode 100644
index 0000000..3102384
--- /dev/null
+++ b/conn/mark_default.go
@@ -0,0 +1,12 @@
+//go:build !linux && !openbsd && !freebsd
+
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
+ */
+
+package conn
+
+func (s *StdNetBind) SetMark(mark uint32) error {
+ return nil
+}