How to tell if connected to internet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:10:58Z http://stackoverflow.com/feeds/question/478952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/478952/how-to-tell-if-connected-to-internet 3 How to tell if connected to internet Ben Daniel 2009-01-26T06:08:10Z 2009-01-26T06:52:41Z <p><strong>I wish to write a windows app which does something when I become disconnected from the internet</strong>. I was thinking of writing a very simple C#/Delphi app which simply polls every 20 seconds to see if I'm still connected.</p> <p>If I have to poll I'd really like a solution other than trying to download a web page from the net. I can't assume that a download attempt failing means "not online" since there may be other apps eating up the internet bandwidth. Plus I'm sure constantly connecting/downloading from a particular site is going to get my IP blocked.</p> <p>I'm sure there's a <strong>way to tell if you're online without downloading/connecting to a remote server</strong> but I'm not sure how.</p> http://stackoverflow.com/questions/478952/how-to-tell-if-connected-to-internet/478961#478961 2 Answer by John Boker for How to tell if connected to internet John Boker 2009-01-26T06:12:48Z 2009-01-26T06:12:48Z <p>It looks like it can be done by using the method described here: <a href="http://www.csharphelp.com/archives3/archive499.html" rel="nofollow">http://www.csharphelp.com/archives3/archive499.html</a></p> http://stackoverflow.com/questions/478952/how-to-tell-if-connected-to-internet/478962#478962 3 Answer by Greg Hewgill for How to tell if connected to internet Greg Hewgill 2009-01-26T06:12:53Z 2009-01-26T06:12:53Z <p>Call the <a href="http://msdn.microsoft.com/en-us/library/aa384702(VS.85).aspx" rel="nofollow"><code>InternetGetConnectedState</code></a> function. This <a href="http://support.microsoft.com/kb/242558" rel="nofollow">knowledgebase article</a> explains how to do it.</p> http://stackoverflow.com/questions/478952/how-to-tell-if-connected-to-internet/479001#479001 10 Answer by François for How to tell if connected to internet François 2009-01-26T06:50:58Z 2009-01-26T06:50:58Z <p>Beware that connected to the Internet does not really mean anything: what if you are connected to your ISP, but the backbone is down, or all the sites you want to access are in a country that went off the grid like recently? Having a connection does not mean you can do what you want.<br /> Anyway, as stated before you can use the <code>InternetGetConnectedState</code> API to test that you have a valid Internet connection configured.<br /> As an example, the following routine told me correctly I had a LAN Connection, but failed to detect that I had my ZoneAlarm firewall set to block "All Internet Activity", which means that you effectively lost all Internet connectivity.</p> <p>Delphi routine:</p> <pre><code>procedure IsConnected; var dwFlags: DWORD; begin if InternetGetConnectedState(@dwFlags, 0) then begin if (dwFlags and INTERNET_CONNECTION_MODEM) = INTERNET_CONNECTION_MODEM then ShowMessage('Modem Connection') else if (dwFlags and INTERNET_CONNECTION_LAN) = INTERNET_CONNECTION_LAN then ShowMessage('LAN Connection') else if (dwFlags and INTERNET_CONNECTION_PROXY) = INTERNET_CONNECTION_PROXY then ShowMessage('Connection thru Proxy') else if (dwFlags and INTERNET_CONNECTION_OFFLINE) = INTERNET_CONNECTION_OFFLINE then ShowMessage('Local system in offline mode') else if (dwFlags and INTERNET_CONNECTION_CONFIGURED) = INTERNET_CONNECTION_CONFIGURED then ShowMessage('Valid connection exists, but might or might not be connected') end else ShowMessage('Not Connected. Try to connect and risk of being prompted to dial into another Internet Service Provider.'); end; </code></pre>