mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 10:58:29 -07:00
25 lines
605 B
Go
25 lines
605 B
Go
|
//go:build linux
|
||
|
// +build linux
|
||
|
|
||
|
package aghnet
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
|
||
|
"github.com/AdguardTeam/golibs/netutil"
|
||
|
"github.com/insomniacslk/dhcp/dhcpv4/nclient4"
|
||
|
)
|
||
|
|
||
|
// listenPacketReusable announces on the local network address additionally
|
||
|
// configuring the socket to have a reusable binding.
|
||
|
func listenPacketReusable(ifaceName, network, address string) (c net.PacketConn, err error) {
|
||
|
var port int
|
||
|
_, port, err = netutil.SplitHostPort(address)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// TODO(e.burkov): Inspect nclient4.NewRawUDPConn and implement here.
|
||
|
return nclient4.NewRawUDPConn(ifaceName, port)
|
||
|
}
|