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

17 lines
379 B
Go
Raw Normal View History

// 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
2017-07-23 09:51:42 +02:00
import (
"syscall"
2017-07-23 09:51:42 +02:00
"golang.org/x/net/internal/socket"
)
2017-07-23 09:51:42 +02:00
func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
// TODO(mikio): implement this
2017-07-23 09:51:42 +02:00
return syscall.EWINDOWS
}