vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Thu Oct 27 23:57:12 2016 +0300| [5f774003c469789ff33383c65810cfc28f18123c] | committer: Rémi Denis-Courmont
udp: fix comments > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5f774003c469789ff33383c65810cfc28f18123c --- src/network/udp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network/udp.c b/src/network/udp.c index 72bd346..19a907a 100644 --- a/src/network/udp.c +++ b/src/network/udp.c @@ -316,7 +316,7 @@ net_SourceSubscribe (vlc_object_t *obj, int fd, /* MCAST_JOIN_SOURCE_GROUP was introduced to OS X in v10.7, but it doesn't work, * so ignore it to use the same code path as on 10.5 or 10.6 */ #if defined (MCAST_JOIN_SOURCE_GROUP) && !defined (__APPLE__) - /* Agnostic SSM multicast join */ + /* Family-agnostic Source-Specific Multicast join */ int level; struct group_source_req gsr; @@ -397,7 +397,7 @@ int net_Subscribe (vlc_object_t *obj, int fd, /* MCAST_JOIN_GROUP was introduced to OS X in v10.7, but it doesn't work, * so ignore it to use the same code as on 10.5 or 10.6 */ #if defined (MCAST_JOIN_GROUP) && !defined (__APPLE__) - /* Agnostic SSM multicast join */ + /* Family-agnostic Any-Source Multicast join */ int level; struct group_req gr; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
