My application is testing devices connectivity using ping (ICMP) functionality. It is working fine for all devices but for a particular device that is CISCO wireless controller it is not able to ping the device. I am able to ping the device through command prompt but when i debug my application i found that i am able to send ping but not able to receive for the device.After doing further analysis i found that select() function is returning 0. I am not sure why this is happening.

My code looks like:

    FD_ZERO(&mask);
    FD_SET (sockfd,&mask);

    /* Wait for a well-defined window of time */
    n = select(sockfd+1,&mask,0,0,tp);

where timeout is 1000ms.

Also i want to confirm that the application is working fine for all other devices.

Please suggest.

link|improve this question
What is errno? – Ben Voigt Feb 17 at 6:06
its just returning 0. – nadeem khan Feb 17 at 6:25
select returns 0 on timeout. Are you sure the other end of the connection sends something during the time you wait? What happens if you call select again with the same parameters? – Joachim Pileborg Feb 17 at 6:26
@nadeemkhan: Not the return code of select. What does WSAGetLastError() give you? – Ben Voigt Feb 17 at 6:28
@Joachim Pileborg: My seclect funtion runs in a while loop which tries to connect 10 times for 1 second during each iteration and its returning the same value 0. – nadeem khan Feb 17 at 6:37
show 6 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.