1// Copyright 2011 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5// +build js,wasm 6 7package net 8 9import "syscall" 10 11func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error { 12 // See golang.org/issue/7399. 13 return syscall.ENOPROTOOPT 14} 15 16func setIPv4MulticastLoopback(fd *netFD, v bool) error { 17 // See golang.org/issue/7399. 18 return syscall.ENOPROTOOPT 19} 20 21func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error { 22 // See golang.org/issue/7399. 23 return syscall.ENOPROTOOPT 24} 25 26func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error { 27 // See golang.org/issue/7399. 28 return syscall.ENOPROTOOPT 29} 30 31func setIPv6MulticastLoopback(fd *netFD, v bool) error { 32 // See golang.org/issue/7399. 33 return syscall.ENOPROTOOPT 34} 35 36func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error { 37 // See golang.org/issue/7399. 38 return syscall.ENOPROTOOPT 39} 40