diff options
Diffstat (limited to 'libgo/go/net/sockoptip_aix.go')
-rw-r--r-- | libgo/go/net/sockoptip_aix.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libgo/go/net/sockoptip_aix.go b/libgo/go/net/sockoptip_aix.go new file mode 100644 index 0000000..1e28fe6 --- /dev/null +++ b/libgo/go/net/sockoptip_aix.go @@ -0,0 +1,15 @@ +// 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 +} |