From: Marian Durkovic Date: Mon, 27 Nov 2006 09:59:45 +0000 (+0000) Subject: Comment on IPv6 SSM X-Git-Tag: 0.9.0-test0~9182 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f01e2a91944574598b8235a34f334270e77a23e8;p=vlc Comment on IPv6 SSM --- diff --git a/src/network/udp.c b/src/network/udp.c index cc71ac0f37..7896a3264c 100644 --- a/src/network/udp.c +++ b/src/network/udp.c @@ -446,8 +446,9 @@ net_SourceSubscribe (vlc_object_t *obj, int fd, || ((src != NULL) && (srclen < sizeof (struct sockaddr_in6)))) return -1; - /* We don't provide IPv6-specific SSM at the moment. - * It seems all the OSes with IPv6 SSM have the new API anyway. */ + /* IPv6-specific SSM API does not exist. So if we're here + * it means IPv6 SSM is not supported on this OS and we + * directly fallback to ASM */ if (net_IPv6Join (obj, fd, (const struct sockaddr_in6 *)grp) == 0) return 0;