sys_ssmreq_stub.go 595 B

12345678910111213141516171819202122
  1. // Copyright 2014 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. //go:build !aix && !darwin && !freebsd && !linux && !solaris && !zos
  5. // +build !aix,!darwin,!freebsd,!linux,!solaris,!zos
  6. package ipv6
  7. import (
  8. "net"
  9. "golang.org/x/net/internal/socket"
  10. )
  11. func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error {
  12. return errNotImplemented
  13. }
  14. func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error {
  15. return errNotImplemented
  16. }