Click here to Skip to main content
15,888,317 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: , +
I am working on udp server/client application. For finding out if any of the client is down, server sends a handshake message to the client. Then, the server waits for the response of client to send some data to assure that the client is active. For this the server blocks in call to recv_from() unless the client replies back, but if the client is down, the server blocks infinitely in call to recv_from. I want to implement such a functionality on my server so that it waits in call to recv_from for a specific time (say 2 secs). If no data received from the client within 2 seconds, the client is considered to be dead and recv_from returns. Is there any way to do it? I searched internet but found solutions like setting MSG_DONTWAIT flag that returns immediately when no data received, but in my case, I don't want recv_from to return immediately but wait for data for a specific duration of time, and when no data received for that specific duration, the recv_from function should retun. Any help is appreciated.
Posted

1 solution

This is the wrong way to do it, you should use a non-blocking socket (see http://msdn.microsoft.com/en-us/library/windows/desktop/ms740121(v=vs.85).aspx[^]). Keep a state table for each client and whenever a message is received mark the time in the table. Check your state tables periodically and if no message has been received in less than the timeout time, mark the client as not responding.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900