yggdrasil-go/src/multicast/multicast_other.go

15 lines
359 B
Go
Raw Normal View History

2021-09-23 12:34:58 +03:00
//go:build !linux && !darwin && !netbsd && !freebsd && !openbsd && !dragonflybsd && !windows
2018-12-06 02:10:50 +03:00
// +build !linux,!darwin,!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
}