Retro68/gcc/libgo/go/net/sockoptip_aix.go

16 lines
375 B
Go
Raw Normal View History

2018-12-28 15:30:48 +00:00
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package net
import "syscall"
func setIPv4MulticastInterface(fd *netFD, ifi *Interface) error {
return syscall.ENOPROTOOPT
}
func setIPv4MulticastLoopback(fd *netFD, v bool) error {
return syscall.ENOPROTOOPT
}