Socket with recv-timeout: What is wrong with this code?

前端 未结 6 2057
难免孤独
难免孤独 2021-02-20 16:41

I\'m trying to implement a socket with a recv timeout of 1 Second:

int sockfd;
struct sockaddr_in self;
struct sockaddr_in client_addr;
int addrlen=sizeof(clien         


        
相关标签:
6条回答
  • 2021-02-20 17:05

    Nothing is wrong... The error code EAGAIN (Resource temporarily unavailable) is exactly what you should get after the timeout expires!

    0 讨论(0)
  • 2021-02-20 17:10

    Here's a snippet using select:

    FD_ZERO(&masterfds);
    FD_SET(sockfd,&masterfds);
    memcpy(&readfds,&masterfds,sizeof(fd_set));
    timeout.tv_sec = 2;
    timeout.tv_usec = 0;
    if (select(sockfd+1, &readfds, NULL, NULL, &timeout) < 0)
    {
        printf("select error");
        exit(1);
    }
    
    if (FD_ISSET(sockfd, &readfds))
    {
        //printf("Read from socket\n");
        // read from the socket
        res = recvfrom(sockfd, (char *)hdrbuf, sizeof(hdrbuf), MSG_PEEK, recvaddr, address_len);
    }
    else
    {
        // the socket timedout
        //printf("Socket timeout started=%d\n",packets_started);
    
    0 讨论(0)
  • 2021-02-20 17:13

    Which socket do you want to have the one-second timeout on? The one accepting connections, or the one established by accept()?

    I'd assume the latter - so try setting the receive timeout on clientfd AFTER the accept returns. You can also get to where you need to be using select, but you shouldn't need to.

    0 讨论(0)
  • 2021-02-20 17:13

    This is little bit off topic, but I really want to share this solution to set recv timeout both on windows and unix. Maybe it's me, but it took me a lot of time to figure out why my program doesn't work and how to properly set timeout. Hope you find it useful. It sets timeout to 10 seconds.

    For Windows:

    DWORD sock_timeout = 10*1000;
    

    For Unix:

    const struct timeval sock_timeout={.tv_sec=10, .tv_usec=0};
    

    For both:

    setsockopt(socket, SOL_SOCKET, SO_RCVTIMEO, (char*)&sock_timeout, sizeof(sock_timeout));
    
    0 讨论(0)
  • 2021-02-20 17:16

    You need one more closing parenthesis at each of these two lines.

    - setsockopt( sockfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on);
    + setsockopt( sockfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
    - setsockopt( sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv);
    + setsockopt( sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
    
    0 讨论(0)
  • 2021-02-20 17:20

    Try using select() before calling recv() or accept().

    select() takes an array of file descriptors (includinig sockets) and returns when at least one of them is ready to receive. It can also return on a timeout.

    In linux you can also try poll() (not sure if Winsock provides this).

    0 讨论(0)
提交回复
热议问题