diff options
Diffstat (limited to 'conn/mark_default.go')
-rw-r--r-- | conn/mark_default.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conn/mark_default.go b/conn/mark_default.go index c315f4b..72b266e 100644 --- a/conn/mark_default.go +++ b/conn/mark_default.go @@ -1,12 +1,12 @@ -// +build !linux,!openbsd,!freebsd +//go:build !linux && !openbsd && !freebsd /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved. */ package conn -func (bind *StdNetBind) SetMark(mark uint32) error { +func (s *StdNetBind) SetMark(mark uint32) error { return nil } |