码迷,mamicode.com
首页 > 其他好文 > 详细

mcast_get_if函数

时间:2019-05-03 14:47:33      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:inet6   errno.h   eof   errno   nbsp   col   gets   switch   color   

#include    <errno.h>

int sockfd_to_family(int);

int mcast_get_if(int sockfd)
{
    switch (sockfd_to_family(sockfd)) {
        case AF_INET: {
        /* TODO: similar to mcast_set_if() */
            return(-1);
        }

#ifdef    IPV6
        case AF_INET6: {
            u_int        idx;
            socklen_t    len;

            len = sizeof(idx);
            if (getsockopt(sockfd, IPPROTO_IPV6, 
                IPV6_MULTICAST_IF, &idx, &len) < 0) {
                return(-1);
            }
            return(idx);
        }
#endif
        default: {
            errno = EAFNOSUPPORT;
            return (-1);
        }
    }
}

 

mcast_get_if函数

标签:inet6   errno.h   eof   errno   nbsp   col   gets   switch   color   

原文地址:https://www.cnblogs.com/soldierback/p/10804836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!