AdGuardHome/internal/aghnet/interfaces_bsd.go

39 lines
1.0 KiB
Go
Raw Normal View History

2022-09-14 14:36:29 +01:00
//go:build darwin || freebsd || openbsd
package aghnet
import (
"context"
"net"
"os"
"syscall"
"github.com/AdguardTeam/golibs/errors"
"golang.org/x/sys/unix"
)
// reuseAddrCtrl is the function to be set to net.ListenConfig.Control. It
// configures the socket to have a reusable port binding.
func reuseAddrCtrl(_, _ string, c syscall.RawConn) (err error) {
cerr := c.Control(func(fd uintptr) {
// TODO(e.burkov): Consider using SO_REUSEPORT.
err = unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_REUSEADDR, 1)
if err != nil {
err = os.NewSyscallError("setsockopt", err)
}
})
2023-09-07 15:13:48 +01:00
err = errors.Join(err, cerr)
2023-09-07 15:13:48 +01:00
return errors.Annotate(err, "setting control options: %w")
}
// listenPacketReusable announces on the local network address additionally
// configuring the socket to have a reusable binding.
func listenPacketReusable(_, network, address string) (c net.PacketConn, err error) {
var lc net.ListenConfig
lc.Control = reuseAddrCtrl
return lc.ListenPacket(context.Background(), network, address)
}