网络编程设置时间超时

  • Post author:
  • Post category:其他
struct timeval tv; /* timeval and timeout stuff added by davekw7x */
            int timeouts = 0;
            tv.tv_sec = 3;
            tv.tv_usec = 0;
            if (setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv,  sizeof tv))
            {
              perror("setsockopt");
              return -1;
            }

            if (connect(sockfd, (struct sockaddr *)&their_addr, sizeof their_addr) == -1) {
                perror("connect");
                exit(1);
            }

            while (((numbytes=recv(sockfd, buf, MAXDATASIZE-1, 0)) == -1) && (++timeouts < 1000)) { /* loop to retry in case it timed out; added by davekw7x */
                perror("recv");
                printf("After timeout #%d, trying again:\n", timeouts);
            }
            printf("numbytes = %d\n", numbytes);

            buf[numbytes] = '\0';

            printf("Received: %s",buf);

版权声明:本文为duola_rain原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。