2017-04-18 01:02:51 +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.
|
|
|
|
|
2018-05-04 21:39:27 +00:00
|
|
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows
|
2017-04-18 01:02:51 +00:00
|
|
|
|
2018-05-04 21:39:27 +00:00
|
|
|
package ipv6
|
2017-04-18 01:02:51 +00:00
|
|
|
|
2018-05-04 21:39:27 +00:00
|
|
|
var (
|
|
|
|
ctlOpts = [ctlMax]ctlOpt{}
|
|
|
|
|
|
|
|
sockOpts = map[int]*sockOpt{}
|
2017-04-18 01:02:51 +00:00
|
|
|
)
|