id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	patch	blocking
12923	wxGTK: wxDialupManager wlan connection handling	blauerpfeil		"wxDialupManager does not check for active wlan connections in the IsOnline check. In case of a computer which is connected via a single wlan connection wxDialupManager::IsOnline returns false even if the connection is alive and the internet is accessible using the connection. This is a patch to trunk to include the check for an active wlan connection which works in my case 

diff --git a/src/unix/dialup.cpp b/src/unix/dialup.cpp
index ec00f80..0392b2e 100644
--- a/src/unix/dialup.cpp
+++ b/src/unix/dialup.cpp
@@ -608,7 +608,7 @@ wxDialUpManagerImpl::CheckProcNet()
 
             while (fgets(output, 256, f) != NULL)
             {
-                if ( strstr(output, ""eth"") ) // network card
+                if ( strstr(output, ""eth"") || strstr(output, ""wlan"")) // networ
                 {
                     netDevice |= NetDevice_LAN;
                 }
"	enhancement	closed	normal	2.9.2	wxGTK	2.9-svn	fixed	wxDialUpManager wlan			1	
