- 论坛徽章:
- 2
|
- int tcp_connect(const char *host,const char *serv)
- {
- int sockfd,n;
- struct addrinfo hints,*res,*ressave;
- bzero(&hints,sizeof(struct addrinfo));
- hints.ai_family = AF_UNSPEC;
- hints.ai_socktype = SOCK_STREAM;
- if((n = getaddrinfo(host,serv,&hints,&res)) != 0)
- {
- perror("get addrinfo error\n");
- exit(0);
- }
- ressave = res;
- if(ressave == NULL)
- {
- printf("can't get the addrinfo\n");
- }
- do
- {
- sockfd = socket(res->ai_family,res->ai_socktype,res->ai_protocol);
- if(sockfd < 0)
- continue;
-
- if(connect(sockfd,res->ai_addr,res->ai_addrlen) == 0)
- break;
-
- close(sockfd);
- }while((res = res->ai_next) != NULL);
- if(res == NULL)
- {
- perror("tcp connect error\n");
- exit(0);
- }
- freeaddrinfo(ressave);
- return sockfd;
- }
复制代码 |
|