From 2c256846ea662c6c28e703d91e07e729f62895f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 03:36:11 +0000 Subject: [PATCH] Bump github.com/lifenjoiner/dhcpdns from 0.0.6 to 0.0.7 Bumps [github.com/lifenjoiner/dhcpdns](https://github.com/lifenjoiner/dhcpdns) from 0.0.6 to 0.0.7. - [Release notes](https://github.com/lifenjoiner/dhcpdns/releases) - [Commits](https://github.com/lifenjoiner/dhcpdns/compare/v0.0.6...v0.0.7) --- updated-dependencies: - dependency-name: github.com/lifenjoiner/dhcpdns dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- go.mod | 2 +- go.sum | 4 ++-- vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go | 7 ++++++- vendor/github.com/lifenjoiner/dhcpdns/readme.md | 2 ++ vendor/modules.txt | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 34e6dfc8..c2179798 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,7 @@ require ( github.com/jedisct1/xsecretbox v0.0.0-20241212092125-3afc4917ac41 github.com/k-sone/critbitgo v1.4.0 github.com/kardianos/service v1.2.2 - github.com/lifenjoiner/dhcpdns v0.0.6 + github.com/lifenjoiner/dhcpdns v0.0.7 github.com/miekg/dns v1.1.63 github.com/opencoff/go-sieve v0.2.1 github.com/powerman/check v1.8.0 diff --git a/go.sum b/go.sum index c78b1206..432718a0 100644 --- a/go.sum +++ b/go.sum @@ -55,8 +55,8 @@ github.com/k-sone/critbitgo v1.4.0 h1:l71cTyBGeh6X5ATh6Fibgw3+rtNT80BA0uNNWgkPrb github.com/k-sone/critbitgo v1.4.0/go.mod h1:7E6pyoyADnFxlUBEKcnfS49b7SUAQGMK+OAp/UQvo0s= github.com/kardianos/service v1.2.2 h1:ZvePhAHfvo0A7Mftk/tEzqEZ7Q4lgnR8sGz4xu1YX60= github.com/kardianos/service v1.2.2/go.mod h1:CIMRFEJVL+0DS1a3Nx06NaMn4Dz63Ng6O7dl0qH0zVM= -github.com/lifenjoiner/dhcpdns v0.0.6 h1:rn4Y5RRR5sgQ6RjWenwhA7i/uHzHW9hbZpCobA4CAJs= -github.com/lifenjoiner/dhcpdns v0.0.6/go.mod h1:BixeaGeafYzDIuDCYIUbSOdi4m+TScpzI9cZGYgzgSk= +github.com/lifenjoiner/dhcpdns v0.0.7 h1:VJM2aFWHU9V7M5v4UYYNaHhIHZkbdvSI6WGGpq6/TNQ= +github.com/lifenjoiner/dhcpdns v0.0.7/go.mod h1:BixeaGeafYzDIuDCYIUbSOdi4m+TScpzI9cZGYgzgSk= github.com/miekg/dns v1.1.63 h1:8M5aAw6OMZfFXTT7K5V0Eu5YiiL8l7nUAkyN6C9YwaY= github.com/miekg/dns v1.1.63/go.mod h1:6NGHfjhpmr5lt3XPLuyfDJi5AXbNIPM9PY6H6sF1Nfs= github.com/onsi/ginkgo/v2 v2.9.5 h1:+6Hr4uxzP4XIUyAkg61dWBw8lb/gc4/X5luuxN/EC+Q= diff --git a/vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go b/vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go index 10485c87..470d9098 100644 --- a/vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go +++ b/vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go @@ -241,7 +241,11 @@ func getOutboundParams(ip string) (*net.IPAddr, *net.Interface, error) { var ipUnicast net.IP var got bool for _, addr := range addrs { - ipi := addr.(*net.IPNet).IP + ipa, ok := addr.(*net.IPNet) + if !ok { + continue + } + ipi := ipa.IP if ipi.Equal(ipAddr.IP) { got = true } @@ -398,6 +402,7 @@ type Detector struct { sync.RWMutex got bool // RemoteIPPort is the remote IPPort to detect within UDP. + // Won't send any data to it. `Dial` in UDP only detects if the network is available. RemoteIPPort string lastActiveIP string dns []net.IP diff --git a/vendor/github.com/lifenjoiner/dhcpdns/readme.md b/vendor/github.com/lifenjoiner/dhcpdns/readme.md index 8ae2e684..cda07099 100644 --- a/vendor/github.com/lifenjoiner/dhcpdns/readme.md +++ b/vendor/github.com/lifenjoiner/dhcpdns/readme.md @@ -12,6 +12,8 @@ go build cli ``` +It will need root privileges on operating systems other than Windows. + ## Homepage https://github.com/lifenjoiner/dhcpdns diff --git a/vendor/modules.txt b/vendor/modules.txt index 6448dc61..1494a559 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -65,7 +65,7 @@ github.com/k-sone/critbitgo # github.com/kardianos/service v1.2.2 ## explicit; go 1.12 github.com/kardianos/service -# github.com/lifenjoiner/dhcpdns v0.0.6 +# github.com/lifenjoiner/dhcpdns v0.0.7 ## explicit; go 1.20 github.com/lifenjoiner/dhcpdns # github.com/miekg/dns v1.1.63