mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
Update deps
This commit is contained in:
parent
b2e74ca1d0
commit
8264b43199
13 changed files with 517 additions and 362 deletions
7
vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go
generated
vendored
7
vendor/github.com/lifenjoiner/dhcpdns/dhcpdns.go
generated
vendored
|
@ -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
|
||||
|
|
2
vendor/github.com/lifenjoiner/dhcpdns/readme.md
generated
vendored
2
vendor/github.com/lifenjoiner/dhcpdns/readme.md
generated
vendored
|
@ -12,6 +12,8 @@ go build
|
|||
cli
|
||||
```
|
||||
|
||||
It will need root privileges on operating systems other than Windows.
|
||||
|
||||
## Homepage
|
||||
|
||||
https://github.com/lifenjoiner/dhcpdns
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue