control_stub.go 672 B

123456789101112131415161718192021222324252627
  1. // Copyright 2013 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. // +build nacl plan9 solaris
  5. package ipv6
  6. func setControlMessage(fd int, opt *rawOpt, cf ControlFlags, on bool) error {
  7. // TODO(mikio): Implement this
  8. return errOpNoSupport
  9. }
  10. func newControlMessage(opt *rawOpt) (oob []byte) {
  11. // TODO(mikio): Implement this
  12. return nil
  13. }
  14. func parseControlMessage(b []byte) (*ControlMessage, error) {
  15. // TODO(mikio): Implement this
  16. return nil, errOpNoSupport
  17. }
  18. func marshalControlMessage(cm *ControlMessage) (oob []byte) {
  19. // TODO(mikio): Implement this
  20. return nil
  21. }