diff options
-rw-r--r-- | dhcpv4/nclient4/conn_unix.go (renamed from dhcpv4/nclient4/conn_linux.go) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dhcpv4/nclient4/conn_linux.go b/dhcpv4/nclient4/conn_unix.go index 6cdb071..bece752 100644 --- a/dhcpv4/nclient4/conn_linux.go +++ b/dhcpv4/nclient4/conn_unix.go @@ -2,8 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build go1.12 +//go:build go1.12 && (darwin || freebsd || linux || netbsd || openbsd) // +build go1.12 +// +build darwin freebsd linux netbsd openbsd package nclient4 |