summaryrefslogtreecommitdiffstats
path: root/plugins/bluez5.h
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2013-01-28 18:11:01 -0300
committerDenis Kenzior <denkenz@gmail.com>2013-01-29 08:39:31 -0600
commita2376f6c77fca082f94ae0f88faa823bb1d0457c (patch)
treec586c139839bb49c99459b4439da84e6e50996ec /plugins/bluez5.h
parent3a3e31eef296c1cf7fe2a197b6696a3c93c85d52 (diff)
downloadofono-a2376f6c77fca082f94ae0f88faa823bb1d0457c.tar.bz2
bluez5: Add SCO socket declarations
Adds local copy of SCO Bluetooth sockets declarations, since the objective to avoid including BlueZ library headers.
Diffstat (limited to 'plugins/bluez5.h')
-rw-r--r--plugins/bluez5.h28
1 files changed, 28 insertions, 0 deletions
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);