From 58ab9edb8a6bbf2e3900b90d7ab1df11332fd9b8 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Mon, 25 Nov 2013 15:08:45 +0200 Subject: [PATCH] android/socket: Add SPP uuid to profile table --- android/socket.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/android/socket.c b/android/socket.c index 43324d042..a03c34f9b 100644 --- a/android/socket.c +++ b/android/socket.c @@ -45,6 +45,7 @@ #include "utils.h" #include "socket.h" +#define SPP_DEFAULT_CHANNEL 3 #define OPP_DEFAULT_CHANNEL 9 #define PBAP_DEFAULT_CHANNEL 15 #define MAS_DEFAULT_CHANNEL 16 @@ -217,7 +218,13 @@ static struct profile_info { 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB }, .channel = MAS_DEFAULT_CHANNEL - } + }, { + .uuid = { + 0x00, 0x00, 0x11, 0x01, 0x00, 0x00, 0x10, 0x00, + 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB + }, + .channel = SPP_DEFAULT_CHANNEL + }, }; static uint32_t sdp_service_register(struct profile_info *profile, -- 2.47.3