2018-01-11 22:38:50 +01:00
|
|
|
// 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.
|
|
|
|
|
2021-02-20 18:55:58 +01:00
|
|
|
//go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos
|
2018-01-11 22:38:50 +01:00
|
|
|
|
|
|
|
package ipv6
|
|
|
|
|
|
|
|
import "golang.org/x/net/internal/socket"
|
|
|
|
|
|
|
|
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
|
2019-03-14 02:17:58 +01:00
|
|
|
return errNotImplemented
|
2018-01-11 22:38:50 +01:00
|
|
|
}
|