You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
666 B

  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. package ipv6
  5. import "syscall"
  6. func setControlMessage(s uintptr, opt *rawOpt, cf ControlFlags, on bool) error {
  7. // TODO(mikio): implement this
  8. return syscall.EWINDOWS
  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, syscall.EWINDOWS
  17. }
  18. func marshalControlMessage(cm *ControlMessage) (oob []byte) {
  19. // TODO(mikio): implement this
  20. return nil
  21. }