File tree 2 files changed +0
-10
lines changed
2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -535,8 +535,6 @@ func TestIPv4MulticastListener(t *testing.T) {
535
535
switch runtime .GOOS {
536
536
case "android" , "plan9" :
537
537
t .Skipf ("not supported on %s" , runtime .GOOS )
538
- case "solaris" , "illumos" :
539
- t .Skipf ("not supported on solaris or illumos, see golang.org/issue/7399" )
540
538
}
541
539
if ! supportsIPv4 () {
542
540
t .Skip ("IPv4 is not supported" )
@@ -610,8 +608,6 @@ func TestIPv6MulticastListener(t *testing.T) {
610
608
switch runtime .GOOS {
611
609
case "plan9" :
612
610
t .Skipf ("not supported on %s" , runtime .GOOS )
613
- case "solaris" , "illumos" :
614
- t .Skipf ("not supported on solaris or illumos, see issue 7399" )
615
611
}
616
612
if ! supportsIPv6 () {
617
613
t .Skip ("IPv6 is not supported" )
Original file line number Diff line number Diff line change @@ -10,31 +10,25 @@ package net
10
10
import "syscall"
11
11
12
12
func setIPv4MulticastInterface (fd * netFD , ifi * Interface ) error {
13
- // See golang.org/issue/7399.
14
13
return syscall .ENOPROTOOPT
15
14
}
16
15
17
16
func setIPv4MulticastLoopback (fd * netFD , v bool ) error {
18
- // See golang.org/issue/7399.
19
17
return syscall .ENOPROTOOPT
20
18
}
21
19
22
20
func joinIPv4Group (fd * netFD , ifi * Interface , ip IP ) error {
23
- // See golang.org/issue/7399.
24
21
return syscall .ENOPROTOOPT
25
22
}
26
23
27
24
func setIPv6MulticastInterface (fd * netFD , ifi * Interface ) error {
28
- // See golang.org/issue/7399.
29
25
return syscall .ENOPROTOOPT
30
26
}
31
27
32
28
func setIPv6MulticastLoopback (fd * netFD , v bool ) error {
33
- // See golang.org/issue/7399.
34
29
return syscall .ENOPROTOOPT
35
30
}
36
31
37
32
func joinIPv6Group (fd * netFD , ifi * Interface , ip IP ) error {
38
- // See golang.org/issue/7399.
39
33
return syscall .ENOPROTOOPT
40
34
}
You can’t perform that action at this time.
0 commit comments