Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-01-16 | bluetooth: Add profile register / unregister | Claudio Takahasi | 3 | -1/+142 | |
Adds utility API to handle BlueZ 5 RegisterProfile and UnregisterProfile methods. | |||||
2013-01-16 | hfp_hf: Add initial file for external HFP | Claudio Takahasi | 2 | -0/+45 | |
This patch adds the initial file to support external HFP profile and BlueZ 5. "hfp_hf_bluez5" plugin will implement an external Bluetooth profile compatible with BlueZ 5, and "hfp_hf_bluez4" plugin will keep the compatibility with BlueZ 4. | |||||
2013-01-16 | bluetooth: Initial files for BlueZ 5 | Claudio Takahasi | 2 | -0/+36 | |
This patch adds the file for Bluetooth(BlueZ 5) oFono plugin. | |||||
2013-01-16 | bluetooth: Rename bluetooth plugins | Claudio Takahasi | 9 | -19/+19 | |
As BlueZ 5 introduced backwards incompatible API changes, and we want to keep support for BlueZ 4 based plugins for some time, we need to separate the plugins that are based on BlueZ 4 from the ones based on BlueZ 5. The bluetooth.c plugin has now been renamed to bluez4.c and the hfp_hf.c plugin is renamed to hfp_hf_bluez4. This will make it easy to add a HFP HF plugin for BlueZ 5. | |||||
2013-01-16 | build: Add configure option for BlueZ 5 support | Claudio Takahasi | 2 | -7/+20 | |
Going forward, BlueZ 5 will be supported by default. BlueZ 4 support will have to be explicitly enabled by using '--enable-bluez4'. As before, the '--disable-bluetooth' configure option will disable all bluetooth support (BlueZ 4 and BlueZ 5) | |||||
2013-01-15 | sim: Fix whitespace violation | Denis Kenzior | 1 | -1/+2 | |
2013-01-01 | phonesim: Add support for SIM hotswap | Denis Kenzior | 1 | -5/+54 | |
2013-01-01 | stk: Fix crash with Modem-Handled SIM Refresh | Denis Kenzior | 1 | -1/+7 | |
2013-01-01 | Revert "stk: Fix crash in SIM refresh handling" | Denis Kenzior | 1 | -2/+2 | |
This reverts commit dfd1fae50b8197b0b4ed81fed3139726e4ae1bf5. | |||||
2012-12-30 | AUTHORS: Mention Forest's contributions | Denis Kenzior | 1 | -0/+1 | |
2012-12-30 | sierra: Initialize GSM error reporting separately | Forest Bond | 1 | -2/+3 | |
2012-12-30 | sierra: Create GPRS context in post_sim function | Forest Bond | 1 | -8/+8 | |
This matches the huawei plugin. | |||||
2013-01-06 | gdbus: Fix memory leak on properties_set() | Anderson Lizardo | 1 | -1/+6 | |
The pointer returned by dbus_message_iter_get_signature() must be freed with dbus_free(). Fixes this memory leak: ==1857== 16 bytes in 1 blocks are definitely lost in loss record 104 of 251 ==1857== at 0x402BF52: realloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) ==1857== by 0x415E286: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.5.8) ==1857== by 0x415E70B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.5.8) ==1857== by 0x415F17B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.5.8) ==1857== by 0x414CB33: dbus_message_iter_get_signature (in /lib/i386-linux-gnu/libdbus-1.so.3.5.8) ==1857== by 0x8053239: properties_set (object.c:899) ==1857== by 0x5FFFFF: ??? ==1857== | |||||
2013-01-05 | gdbus: Check signature of property value before calling setter | Marcel Holtmann | 1 | -0/+5 | |
2013-01-03 | gdbus: Don't include just added interfaces in GetManagedObjects | Lucas De Marchi | 1 | -1/+7 | |
If we received a call to ObjectManager.GetManagedObject we should not include in the response the interfaces in data->added. This is because it's not guaranteed that those interfaces will trigger an InterfacesAdded signal, which is the case if the interface is removed in the same mainloop iteration. | |||||
2013-01-03 | gdbus: Simplify generated introspection | Lucas De Marchi | 1 | -65/+38 | |
The generated introspection is not supposed to be read as is by human, so there's no point in printing the indentation or writing more code to use auto-close tags. If it's desired to read the raw xml file, user can always use other tools to transform the output such as "xmllint --format". This also fixes a missing </property> when property is deprecated. | |||||
2013-01-02 | gdbus: Hold client reference during get name owner reply | Marcel Holtmann | 1 | -0/+4 | |
2012-12-30 | gdbus: Call check_signals when sending signals with g_dbus_send_message | Luiz Augusto von Dentz | 1 | -0/+9 | |
If message passed to g_dbus_send_message is a signal verify if it is a valid and there really exists an interface with respective signal name. | |||||
2012-12-30 | gdbus: Check if the interface being registered is valid | Luiz Augusto von Dentz | 1 | -6/+36 | |
This prevent registering interfaces that are empty or have all members marked as experiemental. | |||||
2012-12-30 | gdbus: Introduce G_DBUS_PROPERTY_FLAG_EXPERIMENTAL | Luiz Augusto von Dentz | 2 | -18/+33 | |
This flag can be used to mark properties as experimental, marked properties are disabled by default and can be enabled by setting G_DBUS_FLAG_ENABLE_EXPERIMENTAL using g_dbus_set_flags. | |||||
2012-12-30 | gdbus: Introduce G_DBUS_SIGNAL_FLAG_EXPERIMENTAL | Luiz Augusto von Dentz | 2 | -4/+23 | |
This flag can be used to mark signals as experimental, marked signals are disabled by default and can be enabled by setting G_DBUS_FLAG_ENABLE_EXPERIMENTAL using g_dbus_set_flags. | |||||
2012-12-30 | gdbus: Introduce G_DBUS_METHOD_FLAG_EXPERIMENTAL | Luiz Augusto von Dentz | 2 | -3/+45 | |
This flag can be used to mark methods as experimental, marked methods are disable by default and can be enabled by setting G_DBUS_FLAG_ENABLE_EXPERIMENTAL using g_dbus_set_flags. | |||||
2012-12-30 | gdbus: Include changed properties only once per signal | Marcel Holtmann | 1 | -0/+3 | |
2012-12-29 | gdbus: Update properties on D-Bus client re-connections | Marcel Holtmann | 1 | -4/+22 | |
2012-12-29 | gdbus: Add function to manually refresh properties | Marcel Holtmann | 2 | -0/+85 | |
2012-12-29 | gdbus: Add support for proxy property change notifications | Marcel Holtmann | 2 | -4/+30 | |
2012-12-29 | gdbus: Fix handling of client connect/disconnect signals | Marcel Holtmann | 1 | -11/+12 | |
2012-12-29 | gdbus: Protect standalone proxy creation with client reference | Marcel Holtmann | 1 | -10/+8 | |
2012-12-27 | gdbus: Use object manager only if callback functions are set | Marcel Holtmann | 1 | -8/+7 | |
2012-12-27 | gdbus: Use client service name and not hardcoded org.bluez | Marcel Holtmann | 1 | -1/+1 | |
2012-12-27 | gdbus: Add support for creating D-Bus proxies without object manager | Marcel Holtmann | 2 | -62/+147 | |
2012-12-22 | gdbus: Avoid using g_ptr_array_new_full convenience function | Marcel Holtmann | 1 | -1/+2 | |
The g_ptr_array_new_full function only got introduced with GLib 2.30 and to avoid requiring a newer GLib use g_ptr_array_set_free_func instead. | |||||
2012-12-20 | Release 1.12 | Marcel Holtmann | 2 | -1/+13 | |
2012-12-19 | doc: Add USAT certification status document | Denis Kenzior | 1 | -0/+437 | |
2012-12-19 | build: Compile support for new D-Bus client helpers | Marcel Holtmann | 1 | -1/+1 | |
2012-12-19 | gdbus: Increase the method call timeout to 5 minutes | Marcel Holtmann | 1 | -1/+3 | |
2012-12-19 | gdbus: Add helper for sending async error replies | Marcel Holtmann | 2 | -0/+38 | |
2012-12-19 | gdbus: Fix race condition with creating duplicate client proxies | Marcel Holtmann | 1 | -0/+23 | |
2012-12-19 | gdbus: Fix issue with unref of client while parsing interfaces | Marcel Holtmann | 1 | -0/+8 | |
2012-12-19 | gdbus: Fix issue with unref of client in connect handler | Marcel Holtmann | 1 | -0/+8 | |
2012-12-19 | gdbus: Add support for D-Bus client method calls | Marcel Holtmann | 2 | -0/+82 | |
2012-12-19 | gdbus: Add callback support for handling property changes | Marcel Holtmann | 2 | -10/+31 | |
2012-12-19 | gdbus: Handle property changed signals and update property | Marcel Holtmann | 1 | -31/+107 | |
2012-12-19 | gdbus: Set property changed filter match rule for each proxy | Marcel Holtmann | 1 | -40/+57 | |
2012-12-19 | gdbus: Use a GPtrArray for the match rules | Marcel Holtmann | 1 | -18/+24 | |
2012-12-19 | gdbus: Add support for setting D-Bus client basic properties | Marcel Holtmann | 2 | -0/+99 | |
2012-12-19 | gdbus: Deep copy of variants also requires a signature | Marcel Holtmann | 1 | -2/+7 | |
2012-12-19 | gdbus: Add support for complex D-Bus client properties | Marcel Holtmann | 1 | -16/+46 | |
2012-12-19 | gdbus: Add support for D-Bus client properties | Marcel Holtmann | 2 | -3/+126 | |
2012-12-19 | gdbus: Add support for D-Bus client proxies | Marcel Holtmann | 2 | -4/+343 | |