Changeset 2cad86262f6f3c1e7d2aec08a1aa8f1a1015f413

Show
Ignore:
Timestamp:
24/11/06 17:35:23 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1164386123 +0000
git-parent:

[f4d4898c075b1f65e8f91dcb827d06f385262e2d]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1164386123 +0000
Message:

platform check -> feature check

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/udp.c

    rd17cf7b r2cad862  
    7373                                 int fd, int family, int hlim ) 
    7474{ 
    75 #ifndef SYS_BEOS 
    7675    int proto, cmd; 
    7776 
     
    8281    switch( family ) 
    8382    { 
     83#ifdef IP_MULTICAST_TTL 
    8484        case AF_INET: 
    8585            proto = SOL_IP; 
    8686            cmd = IP_MULTICAST_TTL; 
    8787            break; 
     88#endif 
    8889 
    8990#ifdef IPV6_MULTICAST_HOPS 
     
    108109            return VLC_EGENERIC; 
    109110    } 
    110 #endif 
     111 
    111112    return VLC_SUCCESS; 
    112113}