1a2f01efa6
Update the Go library to the 1.10beta1 release. Requires a few changes to the compiler for modifications to the map runtime code, and to handle some nowritebarrier cases in the runtime. Reviewed-on: https://go-review.googlesource.com/86455 gotools/: * Makefile.am (go_cmd_vet_files): New variable. (go_cmd_buildid_files, go_cmd_test2json_files): New variables. (s-zdefaultcc): Change from constants to functions. (noinst_PROGRAMS): Add vet, buildid, and test2json. (cgo$(EXEEXT)): Link against $(LIBGOTOOL). (vet$(EXEEXT)): New target. (buildid$(EXEEXT)): New target. (test2json$(EXEEXT)): New target. (install-exec-local): Install all $(noinst_PROGRAMS). (uninstall-local): Uninstasll all $(noinst_PROGRAMS). (check-go-tool): Depend on $(noinst_PROGRAMS). Copy down objabi.go. (check-runtime): Depend on $(noinst_PROGRAMS). (check-cgo-test, check-carchive-test): Likewise. (check-vet): New target. (check): Depend on check-vet. Look at cmd_vet-testlog. (.PHONY): Add check-vet. * Makefile.in: Rebuild. From-SVN: r256365
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
// Copyright 2011 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.
|
|
|
|
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris windows
|
|
|
|
package net
|
|
|
|
import (
|
|
"runtime"
|
|
"syscall"
|
|
)
|
|
|
|
func joinIPv4Group(fd *netFD, ifi *Interface, ip IP) error {
|
|
mreq := &syscall.IPMreq{Multiaddr: [4]byte{ip[0], ip[1], ip[2], ip[3]}}
|
|
if err := setIPv4MreqToInterface(mreq, ifi); err != nil {
|
|
return err
|
|
}
|
|
err := fd.pfd.SetsockoptIPMreq(syscall.IPPROTO_IP, syscall.IP_ADD_MEMBERSHIP, mreq)
|
|
runtime.KeepAlive(fd)
|
|
return wrapSyscallError("setsockopt", err)
|
|
}
|
|
|
|
func setIPv6MulticastInterface(fd *netFD, ifi *Interface) error {
|
|
var v int
|
|
if ifi != nil {
|
|
v = ifi.Index
|
|
}
|
|
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_IPV6, syscall.IPV6_MULTICAST_IF, v)
|
|
runtime.KeepAlive(fd)
|
|
return wrapSyscallError("setsockopt", err)
|
|
}
|
|
|
|
func setIPv6MulticastLoopback(fd *netFD, v bool) error {
|
|
err := fd.pfd.SetsockoptInt(syscall.IPPROTO_IPV6, syscall.IPV6_MULTICAST_LOOP, boolint(v))
|
|
runtime.KeepAlive(fd)
|
|
return wrapSyscallError("setsockopt", err)
|
|
}
|
|
|
|
func joinIPv6Group(fd *netFD, ifi *Interface, ip IP) error {
|
|
mreq := &syscall.IPv6Mreq{}
|
|
copy(mreq.Multiaddr[:], ip)
|
|
if ifi != nil {
|
|
mreq.Interface = uint32(ifi.Index)
|
|
}
|
|
err := fd.pfd.SetsockoptIPv6Mreq(syscall.IPPROTO_IPV6, syscall.IPV6_JOIN_GROUP, mreq)
|
|
runtime.KeepAlive(fd)
|
|
return wrapSyscallError("setsockopt", err)
|
|
}
|