From: Samuel Ortiz Date: Mon, 9 Aug 2010 10:48:02 +0000 (+0200) Subject: Export devices blocked status X-Git-Tag: 0.57~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae3b3b3ea9df42424964cb18df943747367271eb;p=platform%2Fupstream%2Fconnman.git Export devices blocked status --- diff --git a/doc/device-lowlevel-api.txt b/doc/device-lowlevel-api.txt index 9bae36c..f01751b 100644 --- a/doc/device-lowlevel-api.txt +++ b/doc/device-lowlevel-api.txt @@ -70,6 +70,15 @@ Properties string Address [readonly] example would be modifications via the "ifconfig" command line utility. + boolean Blocked [readonly] + + Indicates if a device transmission capability is + blocked or not. This property is a translation of + the device rfkill status. If it is hard or soft + blocked, this property will be true. + + Once a device is blocked, enabling it will fail. + uint16 ScanInterval [readwrite] The scan interval describes the time in seconds diff --git a/src/device.c b/src/device.c index 39d86b5..813e3bc 100644 --- a/src/device.c +++ b/src/device.c @@ -194,6 +194,13 @@ static void powered_changed(struct connman_device *device) DBUS_TYPE_BOOLEAN, &device->powered); } +static void blocked_changed(struct connman_device *device) +{ + connman_dbus_property_changed_basic(device->element.path, + CONNMAN_DEVICE_INTERFACE, "Blocked", + DBUS_TYPE_BOOLEAN, &device->blocked); +} + int __connman_device_enable(struct connman_device *device) { int err; @@ -333,6 +340,9 @@ static DBusMessage *get_properties(DBusConnection *conn, connman_dbus_dict_append_basic(&dict, "Powered", DBUS_TYPE_BOOLEAN, &device->powered); + connman_dbus_dict_append_basic(&dict, "Blocked", + DBUS_TYPE_BOOLEAN, &device->blocked); + if (device->driver && device->driver->scan) connman_dbus_dict_append_basic(&dict, "Scanning", DBUS_TYPE_BOOLEAN, &device->scanning); @@ -1037,6 +1047,8 @@ int __connman_device_set_blocked(struct connman_device *device, device->blocked = blocked; + blocked_changed(device); + if (device->offlinemode == TRUE) return 0;