Index: ipv6/control_stub.go |
=================================================================== |
--- a/ipv6/control_stub.go |
+++ b/ipv6/control_stub.go |
@@ -7,21 +7,17 @@ |
package ipv6 |
func setControlMessage(fd int, opt *rawOpt, cf ControlFlags, on bool) error { |
- // TODO(mikio): Implement this |
return errOpNoSupport |
} |
func newControlMessage(opt *rawOpt) (oob []byte) { |
- // TODO(mikio): Implement this |
return nil |
} |
func parseControlMessage(b []byte) (*ControlMessage, error) { |
- // TODO(mikio): Implement this |
return nil, errOpNoSupport |
} |
func marshalControlMessage(cm *ControlMessage) (oob []byte) { |
- // TODO(mikio): Implement this |
return nil |
} |