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.
errno? – Ben Voigt Feb 17 at 6:06selectreturns0on timeout. Are you sure the other end of the connection sends something during the time you wait? What happens if you callselectagain with the same parameters? – Joachim Pileborg Feb 17 at 6:26select. What doesWSAGetLastError()give you? – Ben Voigt Feb 17 at 6:28