yggdrasil-go/src/multicast/multicast_unix.go

31 lines
578 B
Go
Raw Normal View History

2021-09-23 04:34:58 -05:00
//go:build linux || netbsd || freebsd || openbsd || dragonflybsd
2019-01-13 18:08:41 +00:00
// +build linux netbsd freebsd openbsd dragonflybsd
2018-12-05 22:39:04 +00:00
package multicast
2018-12-05 22:39:04 +00:00
2022-04-17 18:02:25 +01:00
import (
"syscall"
"golang.org/x/sys/unix"
)
2018-12-05 22:39:04 +00:00
func (m *Multicast) _multicastStarted() {
}
func (m *Multicast) multicastReuse(network string, address string, c syscall.RawConn) error {
2018-12-05 22:39:04 +00:00
var control error
var reuseport error
control = c.Control(func(fd uintptr) {
reuseport = unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_REUSEPORT, 1)
})
switch {
case reuseport != nil:
return reuseport
default:
return control
}
}