2017-05-11 14:39:54 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2017-07-23 07:51:42 +00:00
|
|
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows
|
2017-05-11 14:39:54 +00:00
|
|
|
|
|
|
|
package ipv6
|
|
|
|
|
|
|
|
var (
|
|
|
|
ctlOpts = [ctlMax]ctlOpt{}
|
|
|
|
|
2017-07-23 07:51:42 +00:00
|
|
|
sockOpts = map[int]*sockOpt{}
|
2017-05-11 14:39:54 +00:00
|
|
|
)
|