From a2376f6c77fca082f94ae0f88faa823bb1d0457c Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Mon, 28 Jan 2013 18:11:01 -0300 Subject: bluez5: Add SCO socket declarations Adds local copy of SCO Bluetooth sockets declarations, since the objective to avoid including BlueZ library headers. --- plugins/bluez5.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'plugins/bluez5.h') diff --git a/plugins/bluez5.h b/plugins/bluez5.h index 3aa8ffeb..fd0704e5 100644 --- a/plugins/bluez5.h +++ b/plugins/bluez5.h @@ -28,6 +28,34 @@ #define HFP_HS_UUID "0000111e-0000-1000-8000-00805f9b34fb" #define HFP_AG_UUID "0000111f-0000-1000-8000-00805f9b34fb" +#ifndef AF_BLUETOOTH +#define AF_BLUETOOTH 31 +#define PF_BLUETOOTH AF_BLUETOOTH +#endif + +#define BTPROTO_SCO 2 + +#define SOL_SCO 17 + +#ifndef SOL_BLUETOOTH +#define SOL_BLUETOOTH 274 +#endif + +#define BT_DEFER_SETUP 7 + +/* BD Address */ +typedef struct { + uint8_t b[6]; +} __attribute__((packed)) bdaddr_t; + +#define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}}) + +/* SCO socket address */ +struct sockaddr_sco { + sa_family_t sco_family; + bdaddr_t sco_bdaddr; +}; + int bluetooth_register_profile(DBusConnection *conn, const char *uuid, const char *name, const char *object); -- cgit v1.2.3