summaryrefslogtreecommitdiffstats
path: root/plugins/bluez5.h
AgeCommit message (Collapse)AuthorFilesLines
2013-04-25bluez5: Unify bt_register_profile_* into a single functionVinicius Costa Gomes1-5/+2
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-21dun_gw: Add BlueZ 5 versionFrédéric Danis1-0/+1
This patch adds initial implementation of the D-Bus Profile1 interface and methods responsible for handling Bluetooth connections. The DUN GW profile interface is registered as soon as a GPRS capable modem is registered in oFono.
2013-03-04bluez5: Remove Bluetooth related utilitiesClaudio Takahasi1-41/+0
2013-03-04bluez5: Add bt_register_profile_with_rolePaulo Borges1-0/+4
This function allows to specify which role is registering when the profile does not have specific UUIDs for each role.
2013-02-20bluez5: Add profile version argumentClaudio Takahasi1-1/+2
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/+10
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 RFCOMM socket address declarationClaudio Takahasi1-0/+7
This patch adds a copy of Bluetooth RFCOMM socket declaration.
2013-01-29bluez5: Add bt_bacmp()Claudio Takahasi1-0/+2
Adds a copy of BlueZ bacmp() function.
2013-01-29bluez5: Add bt_ba2str()Claudio Takahasi1-0/+2
Adds a copy of BlueZ ba2str() function.
2013-01-29bluez5: Add bt_bacpy()Claudio Takahasi1-0/+2
Adds a copy of BlueZ bacpy() function.
2013-01-29bluez5: Add SCO socket declarationsClaudio Takahasi1-0/+28
Adds local copy of SCO Bluetooth sockets declarations, since the objective to avoid including BlueZ library headers.
2013-01-23bluez5: Add HFP_AG_UUIDVinicius Costa Gomes1-0/+1
2013-01-23bluez5: Add additional definesVinicius Costa Gomes1-1/+3
2013-01-16bluez5: Add a couple of definesClaudio Takahasi1-0/+2
2013-01-16bluetooth: Add profile register / unregisterClaudio Takahasi1-0/+29
Adds utility API to handle BlueZ 5 RegisterProfile and UnregisterProfile methods.