looks like windows vista or above supports the required api.
windows port stuff in net and x/net/{ipv4,ipv6} packages still lack tons of 
control knobs.
feel free to send a patch for review if you'd like. thanks.

cf: https://github.com/golang/go/wiki#contributing-to-the-go-project

On Monday, December 12, 2016 at 3:49:34 AM UTC+9, Javier Moran wrote:
>
> 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 golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to