wifi: Autoscan fallback using a base exponential of 3 and a shorter limit
authorTomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
Tue, 24 Apr 2012 13:41:37 +0000 (16:41 +0300)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 24 Apr 2012 14:17:44 +0000 (16:17 +0200)
A base of 2 creates too many scans on too short times, so a base of 3 reduces
this amount. And a limit of 3600 is way too much, a scan every 5 minute is
more relevant.

plugins/wifi.c

index 817c660..8f1ad8b 100644 (file)
@@ -59,7 +59,7 @@
 #define MAXIMUM_RETRIES   4
 
 #define BGSCAN_DEFAULT "simple:30:-45:300"
-#define AUTOSCAN_DEFAULT "exponential:2:3600"
+#define AUTOSCAN_DEFAULT "exponential:3:300"
 
 struct connman_technology *wifi_technology = NULL;