helper_plan9.go 622 B

1234567891011121314151617181920212223242526272829
  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. package ipv4
  5. import (
  6. "syscall"
  7. )
  8. func (c *genericOpt) sysfd() (int, error) {
  9. // TODO(mikio): Implement this
  10. return 0, syscall.EPLAN9
  11. }
  12. func (c *dgramOpt) sysfd() (int, error) {
  13. // TODO(mikio): Implement this
  14. return 0, syscall.EPLAN9
  15. }
  16. func (c *payloadHandler) sysfd() (int, error) {
  17. // TODO(mikio): Implement this
  18. return 0, syscall.EPLAN9
  19. }
  20. func (c *packetHandler) sysfd() (int, error) {
  21. // TODO(mikio): Implement this
  22. return 0, syscall.EPLAN9
  23. }