diff options
Diffstat (limited to 'conn')
-rw-r--r-- | conn/default.go | 1 | ||||
-rw-r--r-- | conn/mark_default.go | 1 | ||||
-rw-r--r-- | conn/mark_unix.go | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/conn/default.go b/conn/default.go index 161454a..97bf08c 100644 --- a/conn/default.go +++ b/conn/default.go @@ -1,3 +1,4 @@ +//go:build !linux && !windows // +build !linux,!windows /* SPDX-License-Identifier: MIT diff --git a/conn/mark_default.go b/conn/mark_default.go index c315f4b..91cf6a8 100644 --- a/conn/mark_default.go +++ b/conn/mark_default.go @@ -1,3 +1,4 @@ +//go:build !linux && !openbsd && !freebsd // +build !linux,!openbsd,!freebsd /* SPDX-License-Identifier: MIT diff --git a/conn/mark_unix.go b/conn/mark_unix.go index 18eb581..faa4245 100644 --- a/conn/mark_unix.go +++ b/conn/mark_unix.go @@ -1,3 +1,4 @@ +//go:build linux || openbsd || freebsd // +build linux openbsd freebsd /* SPDX-License-Identifier: MIT |