blob: 6526aad58120160142e8e08c89aa4d82020d4bf7 [file] [log] [blame]
Mikio Harabd583822017-02-15 06:52:17 +09001// 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
Russ Cox5f55cee2021-02-19 18:54:43 -05005//go:build !aix && !darwin && !freebsd && !linux && !solaris && !zos
Mikio Harabd583822017-02-15 06:52:17 +09006
7package ipv6
8
9import (
10 "net"
11
12 "golang.org/x/net/internal/socket"
13)
14
15func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error {
Mikio Hara1d742bf2019-03-13 15:34:11 +090016 return errNotImplemented
Mikio Harabd583822017-02-15 06:52:17 +090017}
18
19func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error {
Mikio Hara1d742bf2019-03-13 15:34:11 +090020 return errNotImplemented
Mikio Harabd583822017-02-15 06:52:17 +090021}