summaryrefslogtreecommitdiffstats
path: root/plugins/bluez5.c
AgeCommit message (Collapse)AuthorFilesLines
2013-04-25bluez5: Unify bt_register_profile_* into a single functionVinicius Costa Gomes1-10/+7
It was a cause of confusion for little gain to have separate functions for registering profiles with extra information, for example "role" and "features". We remove those helper functions in favor of a single one with more parameters, "role" and "feature" when NULL, will be ignored.
2013-03-04bluez5: Remove Bluetooth related utilitiesClaudio Takahasi1-17/+0
2013-03-04bluez5: Add bt_register_profile_with_rolePaulo Borges1-2/+13
This function allows to specify which role is registering when the profile does not have specific UUIDs for each role.
2013-03-01bluez5: Move ref / unref handsfree audioPaulo Borges1-14/+1
This commit moves the ref / unref to hfp_hf_bluez5 to make bluez5 more generic and reusable.
2013-02-21bluez5: ref / unref handsfree audioDenis Kenzior1-1/+14
2013-02-20bluez5: Add profile version argumentClaudio Takahasi1-1/+3
This patch adds sending of the Version argument to RegisterProfile method. The version is required to create the service record containing the correct profile version.
2013-02-14bluez5: Add support for Connecting/Disconnecting per UUIDVinicius Costa Gomes1-0/+92
This adds supports for sending the ConnectProfile() and DisconnectProfile() messages for the org.bluez.Device1 interface.
2013-02-14bluez5: Rename BlueZ Profile registration functionsClaudio Takahasi1-2/+2
This patch renames external profile registration functions replacing the prefix from 'bluetooth_' to 'bt_' in order to follow the name convention adopted for bluez5 functions.
2013-01-29bluez5: Add bt_bacmp()Claudio Takahasi1-0/+5
Adds a copy of BlueZ bacmp() function.
2013-01-29bluez5: Add bt_ba2str()Claudio Takahasi1-0/+7
Adds a copy of BlueZ ba2str() function.
2013-01-29bluez5: Add bt_bacpy()Claudio Takahasi1-0/+6
Adds a copy of BlueZ bacpy() function.
2013-01-29bluez5: Add SCO socket declarationsClaudio Takahasi1-0/+3
Adds local copy of SCO Bluetooth sockets declarations, since the objective to avoid including BlueZ library headers.
2013-01-23bluez5: Fix copy paste errorDenis Kenzior1-1/+1
2013-01-16bluetooth: Add profile register / unregisterClaudio Takahasi1-0/+112
Adds utility API to handle BlueZ 5 RegisterProfile and UnregisterProfile methods.
2013-01-16bluetooth: Initial files for BlueZ 5Claudio Takahasi1-0/+33
This patch adds the file for Bluetooth(BlueZ 5) oFono plugin.