summaryrefslogtreecommitdiffstats
path: root/serial/manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'serial/manager.c')
-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,
};