sockopt_stub.go 429 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. // +build dragonfly plan9 solaris
  5. package ipv4
  6. func ipv4HeaderPrepend(fd int) (bool, error) {
  7. // TODO(mikio): Implement this
  8. return false, errOpNoSupport
  9. }
  10. func setIPv4HeaderPrepend(fd int, v bool) error {
  11. // TODO(mikio): Implement this
  12. return errOpNoSupport
  13. }