summaryrefslogtreecommitdiff
path: root/plugins/policy.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-07-11 12:48:19 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-07-12 15:05:50 +0300
commit57ce0cb4c2ad4b03bc1863255dfc508725cedd84 (patch)
tree22de6bf5d1f6ba2bbd4fc27ace4ea3c942297d5a /plugins/policy.c
parent48e31375652d4ebaa2be223196781a0b0ae00b79 (diff)
downloadbluez-57ce0cb4c2ad4b03bc1863255dfc508725cedd84.tar.gz
plugins/policy: Limit the number of retries to sink profile
The policy should only retry a limit number of times.
Diffstat (limited to 'plugins/policy.c')
-rw-r--r--plugins/policy.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/policy.c b/plugins/policy.c
index 02150b083..0292482c3 100644
--- a/plugins/policy.c
+++ b/plugins/policy.c
@@ -43,6 +43,7 @@
#define SOURCE_RETRY_TIMEOUT 2
#define SINK_RETRY_TIMEOUT SOURCE_RETRY_TIMEOUT
#define SOURCE_RETRIES 1
+#define SINK_RETRIES SOURCE_RETRIES
static unsigned int service_id = 0;
static GSList *devices = NULL;
@@ -53,6 +54,7 @@ struct policy_data {
guint source_timer;
uint8_t source_retries;
guint sink_timer;
+ uint8_t sink_retries;
guint ct_timer;
guint tg_timer;
};
@@ -155,6 +157,7 @@ static gboolean policy_connect_sink(gpointer user_data)
struct btd_service *service;
data->source_timer = 0;
+ data->sink_retries++;
service = btd_device_get_service(data->dev, A2DP_SINK_UUID);
if (service != NULL)
@@ -193,7 +196,10 @@ static void sink_cb(struct btd_service *service, btd_service_state_t old_state,
int err = btd_service_get_error(service);
if (err == -EAGAIN) {
- policy_set_sink_timer(data);
+ if (data->sink_retries < SINK_RETRIES)
+ policy_set_sink_timer(data);
+ else
+ data->sink_retries = 0;
break;
} else if (data->sink_timer > 0) {
g_source_remove(data->sink_timer);