Hi,
I have been trying to build a golang program on Windows that joins to a
Multicast group from a particular source address, so far unsucessfully.
Looking at golang.org/x/ipv4/multicast_test.go, it looks like
JoinSourceSpecificGroup is not supported in Windows.
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)
(The comment is a bit misleading as I have seen in wireshark that JoinGroup
generates a IGMPv3 message).
Do you know of any library or method in Golang to enable multicast group
joining for particular address on 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.