helper_stub.go 425 B

12345678910111213141516171819
  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. // +build nacl plan9 solaris
  5. package ipv6
  6. func (c *genericOpt) sysfd() (int, error) {
  7. return 0, errOpNoSupport
  8. }
  9. func (c *dgramOpt) sysfd() (int, error) {
  10. return 0, errOpNoSupport
  11. }
  12. func (c *payloadHandler) sysfd() (int, error) {
  13. return 0, errOpNoSupport
  14. }