2018-11-18 13:43:35 +00:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2017-05-27 04:32:35 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ipv4
|
|
|
|
|
2020-12-08 13:51:48 +00:00
|
|
|
import "golang.org/x/net/internal/socket"
|
2017-05-27 04:32:35 +00:00
|
|
|
|
2018-11-18 13:43:35 +00:00
|
|
|
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
|
2017-05-27 04:32:35 +00:00
|
|
|
// TODO(mikio): implement this
|
2020-12-08 13:51:48 +00:00
|
|
|
return errNotImplemented
|
2017-05-27 04:32:35 +00:00
|
|
|
}
|