summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packaging/connman.spec2
-rw-r--r--plugins/wifi.c21
2 files changed, 14 insertions, 9 deletions
diff --git a/packaging/connman.spec b/packaging/connman.spec
index e5e1b0e0..961f3ee4 100644
--- a/packaging/connman.spec
+++ b/packaging/connman.spec
@@ -5,7 +5,7 @@
Name: connman
Version: 1.35
-Release: 30
+Release: 31
License: GPL-2.0+
Summary: Connection Manager
Url: http://connman.net
diff --git a/plugins/wifi.c b/plugins/wifi.c
index 71727e69..9b2e9e12 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -3535,20 +3535,21 @@ static int network_signalpoll(struct connman_network *network)
static gboolean autosignalpoll_timeout(gpointer data)
{
- struct connman_network *network = data;
- int ret = 0;
+ if (!automaxspeed_timeout) {
+ DBG("automaxspeed_timeout is found to be zero. i.e. currently in disconnected state. !!");
+ return FALSE;
+ }
- automaxspeed_timeout = 0;
- ret = network_signalpoll(network);
+ struct connman_network *network = data;
+ int ret = network_signalpoll(network);
if (ret < 0) {
DBG("Fail to get max speed !!");
+ automaxspeed_timeout = 0;
return FALSE;
}
- automaxspeed_timeout = g_timeout_add_seconds(30, autosignalpoll_timeout, network);
-
- return FALSE;
+ return TRUE;
}
#endif
@@ -3904,7 +3905,11 @@ static void interface_state(GSupplicantInterface *interface)
if (!automaxspeed_timeout) {
DBG("Going to start signalpoll timer!!");
- autosignalpoll_timeout(network);
+ int ret = network_signalpoll(network);
+ if (ret < 0)
+ DBG("Fail to get max speed !!");
+ else
+ automaxspeed_timeout = g_timeout_add_seconds(30, autosignalpoll_timeout, network);
}
#else
/* though it should be already stopped: */