mirror of
https://github.com/golang/net.git
synced 2026-03-31 10:27:08 +09:00
Change-Id: I4710227d104330fa28a563530bd93a3ae8a6c070 Reviewed-on: https://go-review.googlesource.com/c/149877 Reviewed-by: Ian Lance Taylor <iant@golang.org>
13 lines
363 B
Go
13 lines
363 B
Go
// Copyright 2013 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.
|
|
|
|
package ipv6
|
|
|
|
import "golang.org/x/net/internal/socket"
|
|
|
|
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
|
|
// TODO(mikio): implement this
|
|
return errNotImplemented
|
|
}
|