Merge pull request #3 from RS7-EdgeComputing/EDGE-109
[platform/core/system/edge-orchestration.git] / vendor / github.com / miekg / dns / 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 }