2019-12-03 18:49:52 +00:00
|
|
|
// Copyright 2012 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-03-31 14:57:02 +00:00
|
|
|
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows,!zos
|
2019-12-03 18:49:52 +00:00
|
|
|
|
|
|
|
package ipv4
|
|
|
|
|
|
|
|
import "golang.org/x/net/internal/socket"
|
|
|
|
|
|
|
|
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
|
2020-05-30 14:29:47 +00:00
|
|
|
return errNotImplemented
|
2019-12-03 18:49:52 +00:00
|
|
|
}
|