cdma-connman: Add dormant_notify implementation
authorGuillaume Zajac <guillaume.zajac@linux.intel.com>
Thu, 8 Dec 2011 11:00:28 +0000 (12:00 +0100)
committerDenis Kenzior <denkenz@gmail.com>
Thu, 8 Dec 2011 12:17:45 +0000 (06:17 -0600)
src/cdma-connman.c

index 87cefd6..51143f7 100644 (file)
@@ -572,6 +572,23 @@ void ofono_cdma_connman_deactivated(struct ofono_cdma_connman *cm)
                                "Powered", DBUS_TYPE_BOOLEAN, &value);
 }
 
+void ofono_cdma_connman_dormant_notify(struct ofono_cdma_connman *cm,
+                                       ofono_bool_t dormant)
+{
+       DBusConnection *conn = ofono_dbus_get_connection();
+       const char *path;
+
+       if (cm == NULL)
+               return;
+
+       cm->dormant = dormant;
+       path = __ofono_atom_get_path(cm->atom);
+
+       ofono_dbus_signal_property_changed(conn, path,
+                               OFONO_CDMA_CONNECTION_MANAGER_INTERFACE,
+                               "Dormant", DBUS_TYPE_BOOLEAN, &dormant);
+}
+
 static void cdma_connman_unregister(struct ofono_atom *atom)
 {
        DBusConnection *conn = ofono_dbus_get_connection();