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