TCP客户端选择,连接后等待输入

时间:2013-01-20 18:08:25

标签: sockets select connect wait tcpclient

我遇到了使用select实现的简单TCP客户端的问题。

问题是,在第二个printf它只在显示到connect()函数之前显示,然后等待用户输入。连接是否会阻止程序的其余部分直到我发送内容? (TCP服务器也使用select实现,但我没有发现任何问题) 我在网上搜索过,找不到原因,或者我没有找到合适的东西..

#include <includes.h>
int main()
{
int sfd;
fd_set rset;
char buff[1024]=" ";
char playerName[20]="";
int nameSet=0;
struct sockaddr_in server;
sfd= socket(AF_INET,SOCK_STREAM,0);

if(sfd<0)
 { printf("socket not created\n");   return 0; }
bzero(&server,sizeof(struct sockaddr_in));
server.sin_family=AF_INET;
server.sin_port=htons(2020);
inet_aton("127.0.0.1",&server.sin_addr);
  //here is the problem after %d which calls the connect() function
printf("Conexion returned:%d \n  Name:",connect(sfd,(struct sockaddr *)&server,sizeof(server)));
 for(;;)
 {
 bzero(buff,1024);

 FD_ZERO(&rset);
 FD_SET(0,&rset);
 FD_SET(sfd,&rset);
     if(select(sfd+1,&rset,NULL,NULL,NULL)<0)
     {
         printf("con-lost!\n");
         break;
     }

     if(FD_ISSET(0,&rset))
     {
     printf("Talk: \n");
     scanf("%s",buff);
     if(nameSet==0)
     {
         strcpy(playerName,buff);
         nameSet=1;
         printf("Hi:%s\n",playerName);
     }
         if(write(sfd,buff,strlen(buff)+10)<0)
         {
             break;
         }
     }

      if(FD_ISSET(sfd,&rset)>0)
     {
         if(read(sfd,buff,1024)<=0)
         {
         printf("con is off!\n");
         break;
         }
     printf("msg rcd %s\n",buff);
     }

   } //endfor
   close(sfd);
   return 0;
 } //endmain

1 个答案:

答案 0 :(得分:1)

阻塞套接字上的connect函数会阻塞,直到连接操作成功或失败。

应该警告您使用带有阻塞套接字的select,这是您的程序所做的,并不能确保您的程序不会阻止。当您获得select点击时,这并不能保证 future 操作不会阻止。

strlen(buff)+10

+10背后的原因是什么?