Changeset 0afbc3c3bcd0f747b3adbb15b4dcfae7977e2f9e

Show
Ignore:
Timestamp:
11/11/06 18:36:36 (2 years ago)
Author:
Marian Durkovic <md@videolan.org>
git-committer:
Marian Durkovic <md@videolan.org> 1163266596 +0000
git-parent:

[39401d06d8385a69ba0c6a9792fda760d1e2744b]

git-author:
Marian Durkovic <md@videolan.org> 1163266596 +0000
Message:

Sync IPv4 and IPv6 multicast debugs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/misc/network/ipv6.c

    r703490e r0afbc3c  
    267267            p_sin6->sin6_addr = sock.sin6_addr; 
    268268 
    269             msg_Dbg( p_this, "IPV6_ADD_SOURCE_MEMBERSHIP multicast request" ); 
     269            msg_Dbg( p_this, "MCAST_JOIN_SOURCE_GROUP multicast request" ); 
    270270            if( setsockopt( i_handle, IPPROTO_IPV6, MCAST_JOIN_SOURCE_GROUP, 
    271271                          (char *)&imr, sizeof(struct group_source_req) ) == -1 ) 
     
    283283            imr.ipv6mr_interface = sock.sin6_scope_id; 
    284284            imr.ipv6mr_multiaddr = sock.sin6_addr; 
     285            msg_Dbg( p_this, "IPV6_JOIN_GROUP multicast request" ); 
    285286            res = setsockopt(i_handle, IPPROTO_IPV6, IPV6_JOIN_GROUP, (void*) &imr, 
    286287#if defined(WIN32)