summaryrefslogtreecommitdiffstats
path: root/serial
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-11-06 16:13:20 +0200
committerJohan Hedberg <johan.hedberg@nokia.com>2008-11-06 16:13:20 +0200
commit7fc0e09665e52a798dd455306278da54f7dbd1b7 (patch)
tree76c6d0695c9a7345a7d36a68508539d46393b1b8 /serial
parentb877233d59bd60707deb80291add6eb9cac58e37 (diff)
Add OBEX UUIDs to the serial service
Diffstat (limited to 'serial')
-rw-r--r--serial/manager.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/serial/manager.c b/serial/manager.c
index ef45951e..ff327272 100644
--- a/serial/manager.c
+++ b/serial/manager.c
@@ -68,6 +68,8 @@
#define SERIAL_PORT_UUID "00001101-0000-1000-8000-00805F9B34FB"
#define DIALUP_NET_UUID "00001103-0000-1000-8000-00805F9B34FB"
+#define OBJECT_PUSH_UUID "00001105-0000-1000-8000-00805F9B34FB"
+#define FILE_TRANSFER_UUID "00001106-0000-1000-8000-00805F9B34FB"
static DBusConnection *connection = NULL;
@@ -131,7 +133,8 @@ static void port_remove(struct btd_device *device)
static struct btd_device_driver serial_port_driver = {
.name = "serial-port",
- .uuids = BTD_UUIDS(SERIAL_PORT_UUID, DIALUP_NET_UUID),
+ .uuids = BTD_UUIDS(SERIAL_PORT_UUID, DIALUP_NET_UUID,
+ OBJECT_PUSH_UUID, FILE_TRANSFER_UUID),
.probe = port_probe,
.remove = port_remove,
};