5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-12-05 03:35:32 +00:00
yggdrasil-go/src/yggdrasil/multicast_unix.go
2019-01-13 18:08:41 +00:00

23 lines
452 B
Go

// +build linux netbsd freebsd openbsd dragonflybsd
package yggdrasil
import "syscall"
import "golang.org/x/sys/unix"
func multicastReuse(network string, address string, c syscall.RawConn) error {
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
}
}