Mikio Hara | bd58382 | 2017-02-15 06:52:17 +0900 | [diff] [blame] | 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 | |
Russ Cox | 5f55cee | 2021-02-19 18:54:43 -0500 | [diff] [blame] | 5 | //go:build !aix && !darwin && !freebsd && !linux && !solaris && !zos |
Mikio Hara | bd58382 | 2017-02-15 06:52:17 +0900 | [diff] [blame] | 6 | |
| 7 | package ipv6 |
| 8 | |
| 9 | import ( |
| 10 | "net" |
| 11 | |
| 12 | "golang.org/x/net/internal/socket" |
| 13 | ) |
| 14 | |
| 15 | func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { |
Mikio Hara | 1d742bf | 2019-03-13 15:34:11 +0900 | [diff] [blame] | 16 | return errNotImplemented |
Mikio Hara | bd58382 | 2017-02-15 06:52:17 +0900 | [diff] [blame] | 17 | } |
| 18 | |
| 19 | func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { |
Mikio Hara | 1d742bf | 2019-03-13 15:34:11 +0900 | [diff] [blame] | 20 | return errNotImplemented |
Mikio Hara | bd58382 | 2017-02-15 06:52:17 +0900 | [diff] [blame] | 21 | } |