0

我正在尝试解析从服务器中的客户端接收到的数据。服务器必须根据客户端之前发送的消息发回消息。但我不能让 strncmp 函数比较字符串。它总是到达 else 并且我的服务器关闭连接。此外,我的客户保持连接并在屏幕上打印我输入的选项。

请需要帮助以了解问题所在!

谢谢!

不正确的输入关闭错误:错误的文件描述符

程序以代码 01 退出。

void
result(int sockfd)
{
    ssize_t     n;
    char        buf[MAXLINE];
    int         temp;
    time_t      ticks;
    int         i;
again:
    while ((n =read(sockfd, buf, 15)> 0))
    {
     buf[n] = '\0';
     printf("Message Recieved:%s\n",buf);
     srand (time(NULL));
     temp = rand() % 15+1;
     printf("Ramdom es %i\n",temp);

     if ((strncmp (buf,"A",1) == 0) || (strncmp (buf,"a",1) == 0))
     {
      snprintf(buf, sizeof(buf), "You chose option A -%i times on %.24s\r\n", temp,ctime(&ticks));
      Writen(sockfd, buf, n);
     }
     if ((strncmp (buf,"B",1) == 0) || (strncmp (buf,"b",1) == 0))
     {
      snprintf(buf, sizeof(buf), "You chose option B -%i times on on %.24s\r\n", temp,ctime(&ticks));
      Writen(sockfd, buf, n);
     }
     else
     {
       printf("Incorrect Input");
       Close(sockfd);
       break;
     }  
    }
    if (n < 0 && errno == EINTR)
    goto again;
    else if (n < 0)
        err_sys("read error");
}

int
main(int argc, char **argv)
{
    int                 listenfd, connfd;
    socklen_t           len;
    struct sockaddr_in  servaddr, cliaddr;
    char                buff[MAXLINE];
    /*char                message[MAXLINE];*/
    char                recvline[MAXLINE + 1];

    listenfd = Socket(AF_INET, SOCK_STREAM, 0);
    bzero(&servaddr, sizeof(servaddr));
    servaddr.sin_family      = AF_INET;
    servaddr.sin_addr.s_addr = htonl(INADDR_ANY);/*----------------------------------------------------*/
    servaddr.sin_port        = htons(5678); 

    Bind(listenfd, (SA *) &servaddr, sizeof(servaddr));
    Listen(listenfd, LISTENQ);
    printf("EDMTS is running on 129.128.4.80, listening on port 5678\n");
    printf("\n");
    printf("Waiting for incoming connections...Press Ctrl+C to end server\n");

    for ( ; ; )
    {
        len = sizeof(cliaddr);
        connfd = Accept(listenfd, (SA *) &cliaddr, &len);

        /*Client connects to server*/
        printf("\n");
        printf("Connection from %s, port %d\n",
               Inet_ntop(AF_INET, &cliaddr.sin_addr, buff, sizeof(buff)),
               ntohs(cliaddr.sin_port));

           result(connfd);
               Close(connfd);

    }
}
4

1 回答 1

1

有点逻辑

 if ((strncmp (buf,"B",1) == 0) || (strncmp (buf,"b",1) == 0))
 {
  snprintf(buf, sizeof(buf), "You chose option B -%i times on on %.24s\r\n", temp,ctime(&ticks));
  Writen(sockfd, buf, n);
 }
 else
 {
   printf("Incorrect Input");
   Close(sockfd);
   break;
 } 

是其他人所在的地方。

IE

当它被击中后它会运行:

 if ((strncmp (buf,"A",1) == 0) || (strncmp (buf,"a",1) == 0))
 {
  snprintf(buf, sizeof(buf), "You chose option A -%i times on %.24s\r\n", temp,ctime(&ticks));
  Writen(sockfd, buf, n);
 }

顺便说一句,使用toupper http://www.cplusplus.com/reference/cctype/toupper/

IE

 if ('B' == toupper(buf[0]) ...

只需添加另一个 ELSE!

于 2013-03-23T20:44:10.997 回答