sockopt_plan9.go 417 B

12345678910111213141516171819
  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 ipv4HeaderPrepend(fd int) (bool, error) {
  9. // TODO(mikio): Implement this
  10. return false, syscall.EPLAN9
  11. }
  12. func setIPv4HeaderPrepend(fd int, v bool) error {
  13. // TODO(mikio): Implement this
  14. return syscall.EPLAN9
  15. }