Update deps

This commit is contained in:
Frank Denis 2025-02-19 10:30:02 +01:00
parent b2e74ca1d0
commit 8264b43199
13 changed files with 517 additions and 362 deletions

View file

@ -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

View file

@ -12,6 +12,8 @@ go build
cli
```
It will need root privileges on operating systems other than Windows.
## Homepage
https://github.com/lifenjoiner/dhcpdns