2017-05-27 04:32:35 +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.
|
|
|
|
|
2021-08-10 12:41:02 +00:00
|
|
|
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos
|
2021-03-12 16:17:51 +00:00
|
|
|
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows,!zos
|
2017-05-27 04:32:35 +00:00
|
|
|
|
|
|
|
package ipv4
|
|
|
|
|
|
|
|
var (
|
|
|
|
ctlOpts = [ctlMax]ctlOpt{}
|
|
|
|
|
2018-11-18 13:43:35 +00:00
|
|
|
sockOpts = map[int]*sockOpt{}
|
2017-05-27 04:32:35 +00:00
|
|
|
)
|