summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAntonio Huete Jimenez <tuxillo@quantumachine.net>2023-08-15 21:16:52 +0200
committerAntonio Huete Jimenez <tuxillo@quantumachine.net>2023-08-16 10:37:07 +0200
commit754e1cdedef8aaa7e86fd26b734432daadbcecbf (patch)
treecf887e30310c76cf299f6c1282714396ed761e01
parent0f9eb93a696c6d0a39ea3d7d0908b7dc1241b603 (diff)
dragonfly: Initial porting work
Signed-off-by: Antonio Huete Jimenez <tuxillo@quantumachine.net>
-rw-r--r--dhcpv4/nclient4/conn_unix.go4
-rw-r--r--interfaces/bindtodevice_bsd.go2
2 files changed, 3 insertions, 3 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
diff --git a/interfaces/bindtodevice_bsd.go b/interfaces/bindtodevice_bsd.go
index b79c448..7dbfd3f 100644
--- a/interfaces/bindtodevice_bsd.go
+++ b/interfaces/bindtodevice_bsd.go
@@ -1,4 +1,4 @@
-// +build aix freebsd openbsd netbsd
+// +build aix freebsd openbsd netbsd dragonfly
package interfaces