diff options
author | Pablo Mazzini <pmazzini@gmail.com> | 2023-08-16 20:51:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 20:51:47 +0100 |
commit | b3ca2534940d16348457dd6a7fb82f673f511221 (patch) | |
tree | cf887e30310c76cf299f6c1282714396ed761e01 /dhcpv4/nclient4/conn_unix.go | |
parent | 0f9eb93a696c6d0a39ea3d7d0908b7dc1241b603 (diff) | |
parent | 754e1cdedef8aaa7e86fd26b734432daadbcecbf (diff) |
Merge pull request #510 from tuxillo/feat-dragonflybsd-support
Porting work for DragonFly BSD
Diffstat (limited to 'dhcpv4/nclient4/conn_unix.go')
-rw-r--r-- | dhcpv4/nclient4/conn_unix.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpv4/nclient4/conn_unix.go b/dhcpv4/nclient4/conn_unix.go index 1495dc2..f3e48c6 100644 --- a/dhcpv4/nclient4/conn_unix.go +++ b/dhcpv4/nclient4/conn_unix.go @@ -2,9 +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 && (darwin || freebsd || linux || netbsd || openbsd) +//go:build go1.12 && (darwin || freebsd || linux || netbsd || openbsd || dragonfly) // +build go1.12 -// +build darwin freebsd linux netbsd openbsd +// +build darwin freebsd linux netbsd openbsd dragonfly package nclient4 |