blob: 5a68a55a5fe586e86ed74c3287fb3147f47ce0e3 [file] [log] [blame]
Mikio Harad2e5a122012-09-26 21:03:09 +09001// 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
5package ipv4
6
Mikio Haraecb7ecd2013-06-17 00:40:07 +09007import "syscall"
Mikio Harad2e5a122012-09-26 21:03:09 +09008
9func setControlMessage(fd syscall.Handle, opt *rawOpt, cf ControlFlags, on bool) error {
10 // TODO(mikio): Implement this
11 return syscall.EWINDOWS
12}
13
14func newControlMessage(opt *rawOpt) []byte {
15 // TODO(mikio): Implement this
16 return nil
17}
18
19func parseControlMessage(b []byte) (*ControlMessage, error) {
20 // TODO(mikio): Implement this
21 return nil, syscall.EWINDOWS
22}
23
24func marshalControlMessage(cm *ControlMessage) []byte {
25 // TODO(mikio): Implement this
26 return nil
27}