sys_ssmreq_stub.go 569 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 !darwin && !freebsd && !linux && !solaris
  5. // +build !darwin,!freebsd,!linux,!solaris
  6. package ipv4
  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. }