mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00
14 lines
372 B
Go
14 lines
372 B
Go
//go:build !linux && !darwin && !ios && !netbsd && !freebsd && !openbsd && !dragonflybsd && !windows
|
|
// +build !linux,!darwin,!ios,!netbsd,!freebsd,!openbsd,!dragonflybsd,!windows
|
|
|
|
package multicast
|
|
|
|
import "syscall"
|
|
|
|
func (m *Multicast) _multicastStarted() {
|
|
|
|
}
|
|
|
|
func (m *Multicast) multicastReuse(network string, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|