Click here to Skip to main content
15,881,248 members
Articles / Programming Languages / C++
Tip/Trick

How to set a socket connection timeout

Rate me:
Please Sign up or sign in to vote.
4.92/5 (24 votes)
16 Mar 2011CPOL 160.6K   25   13
Resolve long timeout when connection target is unavailable
Sometimes, the connect time-out can take too much time when the target is unavailable. To resolve this issue, we can use non-blocking socket mode to select the timeout.

bool connect(char *host,int port, int timeout)
{
    TIMEVAL Timeout;
    Timeout.tv_sec = timeout;
    Timeout.tv_usec = 0;
    struct sockaddr_in address;  /* the libc network address data structure */   

    sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);

    address.sin_addr.s_addr = inet_addr(host); /* assign the address */
    address.sin_port = htons(port);            /* translate int2port num */	
    address.sin_family = AF_INET;

    //set the socket in non-blocking
    unsigned long iMode = 1;
    int iResult = ioctlsocket(sock, FIONBIO, &iMode);
    if (iResult != NO_ERROR)
    {	
        printf("ioctlsocket failed with error: %ld\n", iResult);
    }
	    
    if(connect(sock,(struct sockaddr *)&address,sizeof(address))==false)
    {	
        return false;
    }	

    // restart the socket mode
    iMode = 0;
    iResult = ioctlsocket(sock, FIONBIO, &iMode);
    if (iResult != NO_ERROR)
    {	
        printf("ioctlsocket failed with error: %ld\n", iResult);
    }

    fd_set Write, Err;
    FD_ZERO(&Write);
    FD_ZERO(&Err);
    FD_SET(sock, &Write);
    FD_SET(sock, &Err);

    // check if the socket is ready
    select(0,NULL,&Write,&Err,&Timeout);			
    if(FD_ISSET(sock, &Write)) 
    {	
        return true;
    }

    return false;
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Inicia Soluciones de Voz S.L.
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGreat Solution ! (but I think there are 2 errors) Pin
acc314113-Jul-20 9:51
acc314113-Jul-20 9:51 
QuestionNeed some clarity on FD_SET(sock, &Write); & if(FD_ISSET(sock, &Write)) Pin
Sai kiran kumar Revanuru10-Dec-18 1:09
Sai kiran kumar Revanuru10-Dec-18 1:09 
AnswerRe: Need some clarity on FD_SET(sock, &Write); & if(FD_ISSET(sock, &Write)) Pin
acc314113-Jul-20 9:46
acc314113-Jul-20 9:46 
QuestionModify the timeout Pin
hoangsonk493-Oct-13 23:23
hoangsonk493-Oct-13 23:23 
AnswerRe: Modify the timeout Pin
falvarezcp200822-Apr-14 23:51
falvarezcp200822-Apr-14 23:51 
GeneralMy vote of 5 Pin
djhellita17-Oct-12 4:33
djhellita17-Oct-12 4:33 
GeneralMy vote of 5 Pin
jiacode19-Aug-12 3:27
jiacode19-Aug-12 3:27 
GeneralMy vote of 5 Pin
pasztorpisti26-Jul-12 10:04
pasztorpisti26-Jul-12 10:04 
GeneralMy vote of 5 Pin
Kai051725-Jul-12 20:42
Kai051725-Jul-12 20:42 
Good example
GeneralReason for my vote of 5 that's what i need. Pin
HappyProgrammerSjy6-Aug-11 23:05
HappyProgrammerSjy6-Aug-11 23:05 
GeneralReason for my vote of 4 It's useful,but I like Boost! Pin
A.doo23-Mar-11 3:14
A.doo23-Mar-11 3:14 
GeneralReason for my vote of 5 just i need it Pin
i4cll18-Mar-11 22:47
i4cll18-Mar-11 22:47 
GeneralReason for my vote of 5 I think that it's useful. Pin
vietean15-Mar-11 16:17
vietean15-Mar-11 16:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.