k3s/vendor/golang.org/x/net/ipv4/control_windows.go

13 lines
363 B
Go
Raw Normal View History

2019-09-27 21:51:53 +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.
package ipv4
2019-12-12 01:27:03 +00:00
import "golang.org/x/net/internal/socket"
2019-09-27 21:51:53 +00:00
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
// TODO(mikio): implement this
2019-12-12 01:27:03 +00:00
return errNotImplemented
2019-09-27 21:51:53 +00:00
}