summaryrefslogtreecommitdiff
path: root/src/gatt-client.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2017-12-19 15:06:01 -0200
committerJohan Hedberg <johan.hedberg@intel.com>2017-12-19 20:24:42 +0100
commitf34557fbc8f38734d650eac69cc45e8cc99388f9 (patch)
tree087d4ec87bde6ec248d6c094639176e79ab655dd /src/gatt-client.c
parentc07b067ff1e1ed13f1adbfac0a842fb76dee53d1 (diff)
downloadbluez-f34557fbc8f38734d650eac69cc45e8cc99388f9.tar.gz
gatt: Mark AcquireWrite and AcquireNotify as stable
AcquireWrite and AcquireNofify are required by meshctl.
Diffstat (limited to 'src/gatt-client.c')
-rw-r--r--src/gatt-client.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gatt-client.c b/src/gatt-client.c
index 6d5bbfa02..2f01867dc 100644
--- a/src/gatt-client.c
+++ b/src/gatt-client.c
@@ -1612,11 +1612,9 @@ static const GDBusPropertyTable characteristic_properties[] = {
characteristic_notifying_exists },
{ "Flags", "as", characteristic_get_flags, NULL, NULL },
{ "WriteAcquired", "b", characteristic_get_write_acquired, NULL,
- characteristic_write_acquired_exists,
- G_DBUS_PROPERTY_FLAG_EXPERIMENTAL },
+ characteristic_write_acquired_exists },
{ "NotifyAcquired", "b", characteristic_get_notify_acquired, NULL,
- characteristic_notify_acquired_exists,
- G_DBUS_PROPERTY_FLAG_EXPERIMENTAL },
+ characteristic_notify_acquired_exists },
{ }
};
@@ -1628,12 +1626,12 @@ static const GDBusMethodTable characteristic_methods[] = {
{ "options", "a{sv}" }),
NULL,
characteristic_write_value) },
- { GDBUS_EXPERIMENTAL_ASYNC_METHOD("AcquireWrite",
+ { GDBUS_ASYNC_METHOD("AcquireWrite",
GDBUS_ARGS({ "options", "a{sv}" }),
GDBUS_ARGS({ "fd", "h" },
{ "mtu", "q" }),
characteristic_acquire_write) },
- { GDBUS_EXPERIMENTAL_ASYNC_METHOD("AcquireNotify",
+ { GDBUS_ASYNC_METHOD("AcquireNotify",
GDBUS_ARGS({ "options", "a{sv}" }),
GDBUS_ARGS({ "fd", "h" },
{ "mtu", "q" }),