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

13 lines
363 B
Go
Raw Normal View History

2019-01-03 23:23:39 +01: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-04-13 14:47:57 +02:00
import "golang.org/x/net/internal/socket"
2019-01-03 23:23:39 +01:00
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
// TODO(mikio): implement this
2019-04-13 14:47:57 +02:00
return errNotImplemented
2019-01-03 23:23:39 +01:00
}