[Guessnet-devel] [svn] r177 - in trunk: . debian src

Enrico Zini enrico at costa.debian.org
Sat Sep 23 15:43:52 UTC 2006


Author: enrico
Date: Sat Sep 23 15:43:43 2006
New Revision: 177

Modified:
   trunk/   (props changed)
   trunk/debian/changelog
   trunk/src/IFace.cc
Log:
 r454 at viaza:  enrico | 2006-09-23 16:41:47 +0100
 Don't check for AP association as part of link beat detection


Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog	(original)
+++ trunk/debian/changelog	Sat Sep 23 15:43:43 2006
@@ -17,9 +17,13 @@
       Closes: bug#387603.
     - Better output for link detection functions when they fail.
       Closes: bug#387600.
+    - Correctly handle error cases in link beat detection.
+      Closes: bug#336924.
+    - Don't check if the wlan interface is associated with an AP as part
+      of link-beat detection.
   * Added X-Vcs-Svn tag to debian/control
 
- -- Enrico Zini <enrico at debian.org>  Sat, 23 Sep 2006 16:00:15 +0100
+ -- Enrico Zini <enrico at debian.org>  Sat, 23 Sep 2006 16:39:57 +0100
  
 
 guessnet (0.39-2) unstable; urgency=low

Modified: trunk/src/IFace.cc
==============================================================================
--- trunk/src/IFace.cc	(original)
+++ trunk/src/IFace.cc	Sat Sep 23 15:43:43 2006
@@ -138,7 +138,7 @@
     return edata.data ? IFSTATUS_UP : IFSTATUS_DOWN;
 }
 
-
+#if 0
 static int get_wlan_qual_old(const char *iface)
 {
     FILE *f;
@@ -255,6 +255,7 @@
     
     return q > 0 ? IFSTATUS_UP : IFSTATUS_DOWN;
 }
+#endif
 
 static interface_status_t (*cached_detect_beat_func)(int, const char*) = NULL;
 
@@ -283,6 +284,7 @@
 		verbose("Link beat detection (ethtool) failed: %s\n", e.desc().c_str());
 	}
 
+#if 0
 	try {
 		interface_status_t status = interface_detect_beat_wlan(fd, iface);
 		cached_detect_beat_func = interface_detect_beat_wlan;
@@ -290,6 +292,7 @@
 	} catch (wibble::exception::MII& e) {
 		verbose("Link beat detection (wlan) failed: %s\n", e.desc().c_str());
 	}
+#endif
 
 	try {
 		interface_status_t status = interface_detect_beat_priv(fd, iface);



More information about the Guessnet-devel mailing list