【c语言】打开一个客户端socket描述符

int open_clientfdd(char *hostname,char *port){
    int clientfd;
    struct addrinfo hints,*listp,*p;
    /* get a list of potential server address*/

    memset(&hints,0,sizeof(struct addrinfo));
    hints.ai_socktype = SOCK_STREAM;  /* open a connection */
    hints.ai_flags = AI_NUMERICSERV;  /* use a numeric prot arg  */
    hints.ai_flags |= AI_ADDRCONFIG;  /* recommended for connections */
    getaddrinfo(hostname,port,&hints,&listp);

    /* walk the list for one that we can successfully connect to.*/
    for(p = listp ; p; p = p->ai_next){
        /* create a socket descriptor */
        if((clientfd = socket(p->ai_family,p->ai_socktype,p->ai_protocol)) < 0){
            continue;
        }

        /* connect to the server*/
        if(connect(clientfd,p->ai_addr,p->ai_addrlen) != -1 ){
            break;  /* connect success */
        }

        close(clientfd);

    }


    /* clean up */

    freeaddrinfo(listp);

    if(!p)  /* all connects failed */
        return -1;
    else
        return clientfd;
    exit(0);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值