tags:

views:

44

answers:

1

Our program calls InternetCheckConnection every 2 seconds to test whether the program is connected to our server.

We have around 4000 clients running our program. Now the server response is slow, despite its processor is almost idle and the free memory is high enough. Is it possible that InternetCheckConnection puts a load on our server slowing it down?

I also would be happy to know the details of InternetCheckConnection implementation. MSDN does not tell much.

A: 

Thanks, I have eventually found the answer on another MSDN page.

InternetCheckConnection pings the server.

http://msdn.microsoft.com/en-us/library/aa383996%28VS.85%29.aspx

Pavel