c中的非阻塞套接字

时间:2013-04-15 05:56:38

标签: c sockets udp

目前我正在开发单个服务器,单客户端udp聊天应用程序。最初我使用阻塞套接字,这是默认条件。现在我想将套接字转换为非阻塞,以便客户端和服务器之间的通信可以在没有转弯障碍的情况下完成... 我现在已经在服务器端实现了select功能,但是当它启动时客户端会发送一条消息,一旦显示在服务器端,之后客户端和服务器都没有响应,所以现在我展示了如何我在服务器端实现了select()函数:

            //Declaring a non-blocking structure
              fd_set readfds,writefds;
           // clear the set ahead of time
              FD_ZERO(&readfds);
              FD_ZERO(&writefds);
           // add our descriptor to the set
              FD_SET(sd, &readfds);
              FD_SET(sd, &writefds);
              /value of sd+1
              int n=sd+1;

由于我想接收和发送数据,我在循环中实现了select函数:

                int client_length = (int)sizeof(struct sockaddr_in);
                int rv = select(n, &readfds, NULL, NULL, NULL);
                if(rv==-1)
                {
                 printf("Error in Select!!!\n");
                 exit(0);
                }
               else if(rv==0)
                { 
                 printf("Timeout occurred\n");
                }
               else 
                if (FD_ISSET(sd, &readfds))
                {
                int bytes_received = recvfrom(sd, buffer,SIZE, 0, (struct sockaddr *)&client, &client_length);
                if (bytes_received < 0)
               {
               fprintf(stderr, "Could not receive datagram.\n");
               closesocket(sd);
               WSACleanup();
               exit(0);
              }
                }

进一步发送数据:

              fgets(buffer,SIZE,stdin);
              int rv1 = select(n, &writefds, NULL, NULL, NULL);
              if(rv1==-1)
              {
           printf("Error in Select!!!\n");
           exit(0);
              }
             else if(rv1==0)
             {
            printf("Timeout occurred\n");
             }
            else 
             if(FD_ISSET(sd,&writefds))
                  {
                     if(sendto(sd, buffer,strlen(buffer), 0, (struct sockaddr *) &client,client_length)<0)
                         {
                            printf("Error sending the file! \n");
                            exit(1);
                         }
                  }

                }

所以我真的很感激somoone让我知道我是否做得对,如果可以,那么客户端的相同实现会解决我的问题吗?

1 个答案:

答案 0 :(得分:2)

这是不正确的:

select(n, &writefds, NULL, NULL, NULL);

第二个参数仅用于检查可读性。要检查可写性,请使用第三个参数:

select(n, NULL, &writefds, NULL, NULL);