From 1b37809b1df771fcfc2c46a8ece765359615ad28 Mon Sep 17 00:00:00 2001 From: Amisha Jain Date: Tue, 28 Jan 2025 23:11:30 +0530 Subject: [PATCH] obex: Update the MAP Client version to 1.4 in SDP record This change is required in below PTS testcase: 1. MAP/MCE/SGSIT/ATTR/BV-10-C Attribute GSIT - Bluetooth Profile Descriptor List, MAP 1.4 Current MAP Client version 1.2 is being deprecated and withdrawn from BT Sig, so it is mandatory to update the version. No additional changes are needed for supporting the new version. --- doc/supported-features.txt | 3 ++- src/profile.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/supported-features.txt b/doc/supported-features.txt index 8b71bfe17..5318dc68d 100644 --- a/doc/supported-features.txt +++ b/doc/supported-features.txt @@ -40,7 +40,8 @@ FTP 1.3 Client, Server OPP 1.2 Client, Server SYNCH 1.1 Client PBAP 1.1 Client, Server -MAP 1.0 Client, Server +MAP 1.0 Server +MAP 1.4 Client HID 1.1 Host diff --git a/src/profile.c b/src/profile.c index 70ac058f4..af32dbd9f 100644 --- a/src/profile.c +++ b/src/profile.c @@ -2167,7 +2167,7 @@ static struct default_settings { .mode = BT_IO_MODE_ERTM, .authorize = true, .get_record = get_mns_record, - .version = 0x0102 + .version = 0x0104 }, }; -- 2.47.3