sockopt_plan9.go 412 B

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