This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
api
cmd
connector
example
server
storage
vendor
github.com
golang.org
x
crypto
net
bpf
context
dict
html
http2
icmp
idna
internal
ipv4
ipv6
bpf_test.go
bpfopt_linux.go
bpfopt_stub.go
control.go
control_rfc2292_unix.go
control_rfc3542_unix.go
control_stub.go
control_unix.go
control_windows.go
defs_darwin.go
defs_dragonfly.go
defs_freebsd.go
defs_linux.go
defs_netbsd.go
defs_openbsd.go
defs_solaris.go
dgramopt_posix.go
dgramopt_stub.go
doc.go
endpoint.go
example_test.go
gen.go
genericopt_posix.go
genericopt_stub.go
header.go
header_test.go
helper.go
helper_stub.go
helper_unix.go
helper_windows.go
iana.go
icmp.go
icmp_bsd.go
icmp_linux.go
icmp_solaris.go
icmp_stub.go
icmp_test.go
icmp_windows.go
mocktransponder_test.go
multicast_test.go
multicastlistener_test.go
multicastsockopt_test.go
payload.go
payload_cmsg.go
payload_nocmsg.go
readwrite_test.go
sockopt.go
sockopt_asmreq_unix.go
sockopt_asmreq_windows.go
sockopt_ssmreq_stub.go
sockopt_ssmreq_unix.go
sockopt_stub.go
sockopt_test.go
sockopt_unix.go
sockopt_windows.go
sys_bsd.go
sys_darwin.go
sys_freebsd.go
sys_linux.go
sys_stub.go
sys_windows.go
syscall_linux_386.go
syscall_unix.go
thunk_linux_386.s
unicast_test.go
unicastsockopt_test.go
zsys_darwin.go
zsys_dragonfly.go
zsys_freebsd_386.go
zsys_freebsd_amd64.go
zsys_freebsd_arm.go
zsys_linux_386.go
zsys_linux_amd64.go
zsys_linux_arm.go
zsys_linux_arm64.go
zsys_linux_mips64.go
zsys_linux_mips64le.go
zsys_linux_ppc.go
zsys_linux_ppc64.go
zsys_linux_ppc64le.go
zsys_linux_s390x.go
zsys_netbsd.go
zsys_openbsd.go
zsys_solaris.go
lex
netutil
proxy
publicsuffix
route
trace
webdav
websocket
xsrftoken
.gitattributes
.gitignore
AUTHORS
CONTRIBUTING.md
CONTRIBUTORS
LICENSE
PATENTS
README
codereview.cfg
oauth2
google.golang.org
gopkg.in
version
.gitignore
Makefile
glide.lock
glide.yaml
glide_test.go
dex/vendor/golang.org/x/net/ipv6/helper_stub.go
2016-07-26 15:51:24 -07:00

20 lines
425 B
Go

// Copyright 2013 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 nacl plan9 solaris
package ipv6
func (c *genericOpt) sysfd() (int, error) {
return 0, errOpNoSupport
}
func (c *dgramOpt) sysfd() (int, error) {
return 0, errOpNoSupport
}
func (c *payloadHandler) sysfd() (int, error) {
return 0, errOpNoSupport
}