OSDN Git Service

new repo
[bytom/vapor.git] / vendor / golang.org / x / net / ipv4 / control_windows.go
1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package ipv4
6
7 import (
8         "syscall"
9
10         "golang.org/x/net/internal/socket"
11 )
12
13 func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error {
14         // TODO(mikio): implement this
15         return syscall.EWINDOWS
16 }