yggdrasil-go/src/multicast/multicast_other.go

15 lines
372 B
Go
Raw Normal View History

//go:build !linux && !darwin && !ios && !netbsd && !freebsd && !openbsd && !dragonflybsd && !windows
// +build !linux,!darwin,!ios,!netbsd,!freebsd,!openbsd,!dragonflybsd,!windows
2018-12-06 01:39:04 +03:00
package multicast
2018-12-06 01:39:04 +03:00
import "syscall"
func (m *Multicast) _multicastStarted() {
}
func (m *Multicast) multicastReuse(network string, address string, c syscall.RawConn) error {
2018-12-06 01:39:04 +03:00
return nil
}