mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07:36 +03:00
Add test from #2460, import dhcpdns
This commit is contained in:
parent
d7878615b2
commit
6e1e5e3e68
10 changed files with 661 additions and 0 deletions
21
vendor/github.com/lifenjoiner/dhcpdns/sockopt_reuse0.go
generated
vendored
Normal file
21
vendor/github.com/lifenjoiner/dhcpdns/sockopt_reuse0.go
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2023-now by lifenjoiner. All rights reserved.
|
||||
// Use of this source code is governed by a MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
|
||||
//go:build windows || (js && wasm)
|
||||
// +build windows js,wasm
|
||||
|
||||
package dhcpdns
|
||||
|
||||
import (
|
||||
"net"
|
||||
)
|
||||
|
||||
// SO_REUSEADDR and SO_REUSEPORT: https://stackoverflow.com/questions/14388706/
|
||||
|
||||
// `SO_REUSEADDR` doesn't really work for this on Windows, if `DHCP Client` service occupies the port!
|
||||
// https://learn.microsoft.com/en-us/windows/win32/winsock/using-so-reuseaddr-and-so-exclusiveaddruse
|
||||
// On Windows, the 1st bind receives the reply data.
|
||||
func reuseListenPacket(network, address string) (net.PacketConn, error) {
|
||||
return net.ListenPacket(network, address)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue