2018-06-01 10:24:59 -04: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.
|
|
|
|
|
2019-06-26 16:08:54 -04:00
|
|
|
// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows
|
2018-06-01 10:24:59 -04:00
|
|
|
|
|
|
|
package ipv4
|
|
|
|
|
|
|
|
import "golang.org/x/net/internal/socket"
|
|
|
|
|
|
|
|
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
|
2019-04-05 19:50:06 -04:00
|
|
|
return errNotImplemented
|
2018-06-01 10:24:59 -04:00
|
|
|
}
|