1. socket的TIMEOUT

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>

int timeout_connect( const char* ip, int port, int time )
{
    int ret = 0;
    struct sockaddr_in address;
    bzero( &address, sizeof( address ) );
    address.sin_family = AF_INET;
    inet_pton( AF_INET, ip, &address.sin_addr );
    address.sin_port = htons( port );

    int sockfd = socket( PF_INET, SOCK_STREAM, 0 );
    assert( sockfd >= 0 );
    int flags = fcntl(sockfd, F_GETFL, 0);
    if (flags < 0) {
         fprintf(stderr, "Get flags error:%s\n", strerror(errno));
         close(sockfd);
         return -1;
     }
     flags |= O_NONBLOCK;
    //  if (fcntl(sockfd, F_SETFL, flags) < 0) {
    //      fprintf(stderr, "Set flags error:%s\n", strerror(errno));
    //      close(sockfd);
    //      return -1;
    //  }
    struct timeval timeout;
    timeout.tv_sec = time;
    timeout.tv_usec = 0;
    socklen_t len = sizeof( timeout );
    ret = setsockopt( sockfd, SOL_SOCKET, SO_SNDTIMEO, &timeout, len );
    assert( ret != -1 );

    ret = connect( sockfd, ( struct sockaddr* )&address, sizeof( address ) );
    if ( ret == -1 )
    {
        if( errno == EINPROGRESS )
        {
            printf( "connecting timeout\n" );
            return -1;
        }
        printf( "error occur when connecting to server:%d.\n", errno);
        return -1;
    }

    return sockfd;
}

int main( int argc, char* argv[] )
{
    if( argc <= 2 )
    {
        printf( "usage: %s ip_address port_number\n", basename( argv[0] ) );
        return 1;
    }
    const char* ip = argv[1];
    int port = atoi( argv[2] );

    int sockfd = timeout_connect( ip, port, 5 );
    if ( sockfd < 0 )
    {
        return 1;
    }
    return 0;
}
View Code

相关文章:

  • 2021-07-24
猜你喜欢
  • 2022-12-23
  • 2022-01-07
  • 2021-08-20
  • 2022-12-23
  • 2021-12-03
相关资源
相似解决方案