summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-02-07 16:56:41 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2016-01-28 14:10:05 +0200
commit7571f0d5e25c7c0d54aef18e0f38fdaf61237c10 (patch)
tree476d19ade80a311eff306bdbc4a4b8259aae7423
parentf177491f0d933135e835b1056276df2437030e07 (diff)
downloadbluez-7571f0d5e25c7c0d54aef18e0f38fdaf61237c10.tar.gz
plugins/service: Add AutoConnect property
-rw-r--r--plugins/service.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/service.c b/plugins/service.c
index 1fb5450ee..9c1cb456a 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -238,12 +238,46 @@ static gboolean get_version(const GDBusPropertyTable *property,
return TRUE;
}
+static gboolean get_auto_connect(const GDBusPropertyTable *property,
+ DBusMessageIter *iter, void *user_data)
+{
+ struct service_data *data = user_data;
+ dbus_bool_t value = btd_service_get_auto_connect(data->service);
+
+ dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
+
+ return TRUE;
+}
+
+static void set_auto_connect(const GDBusPropertyTable *property,
+ DBusMessageIter *value,
+ GDBusPendingPropertySet id,
+ void *user_data)
+{
+ struct service_data *data = user_data;
+ dbus_bool_t b;
+
+ if (dbus_message_iter_get_arg_type(value) != DBUS_TYPE_BOOLEAN) {
+ g_dbus_pending_property_error(id,
+ ERROR_INTERFACE ".InvalidArguments",
+ "Invalid arguments in method call");
+ return;
+ }
+
+ dbus_message_iter_get_basic(value, &b);
+
+ btd_service_set_auto_connect(data->service, b);
+
+ g_dbus_pending_property_success(id);
+}
+
static const GDBusPropertyTable service_properties[] = {
{ "Device", "o", get_device, NULL, NULL },
{ "State", "s", get_state, NULL, NULL },
{ "RemoteUUID", "s", get_remote_uuid, NULL, remote_uuid_exists },
{ "LocalUUID", "s", get_local_uuid, NULL, local_uuid_exists },
{ "Version", "q", get_version, NULL, version_exists },
+ { "AutoConnect", "b", get_auto_connect, set_auto_connect, NULL },
{ }
};