mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-02-15 03:11:50 +00:00
10 lines
196 B
Go
10 lines
196 B
Go
|
// +build !linux,!darwin,!netbsd,!freebsd,!openbsd,!dragonflybsd
|
||
|
|
||
|
package yggdrasil
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func multicastReuse(network string, address string, c syscall.RawConn) error {
|
||
|
return nil
|
||
|
}
|