Hello:
It seems that IGMPv3 is only supported in linux in the
golang.org/x/net/ipv4.
Windows is not supported. See the following comment in
golang.org/x/net/ipv4/multicast_test.go
if err := p.JoinSourceSpecificGroup(ifi, &grp, tt.src); err != nil {
switch runtime.GOOS {
case "freebsd", "linux":
default: // platforms that don't support IGMPv2/3 fail here
t.Logf("not supported on %s", runtime.GOOS)
continue
}
t.Fatal(err)
Do you know of any library that allows IGMPv2/3 support for Golang in Windows?
Thank you
Javier
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.