Return-Path: MIME-Version: 1.0 In-Reply-To: <1438779375-12187-1-git-send-email-gowtham.ab@samsung.com> References: <1438779375-12187-1-git-send-email-gowtham.ab@samsung.com> Date: Mon, 10 Aug 2015 13:49:53 +0300 Message-ID: Subject: Re: [PATCH] src/profile: Add GoepL2CapPsm in SDP record From: Luiz Augusto von Dentz To: Gowtham Anandha Babu Cc: "linux-bluetooth@vger.kernel.org" , Bharat Panda Content-Type: text/plain; charset=UTF-8 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi Gowtham, On Wed, Aug 5, 2015 at 3:56 PM, Gowtham Anandha Babu wrote: > As per the MAP & PBAP v1.2 SDP table, it should contain the GoepL2CapPsm > in its SDP record. This patch adds the same. > > The below test cases verifies the presence of GoepL2CapPsm attribute is > in SDP record. > TC_PSE_CON_BV_02_C - PASS > TC_MSE_CON_BV_02_C - PASS > --- > src/profile.c | 38 +++++++++++++++++++++++++++++++------- > 1 file changed, 31 insertions(+), 7 deletions(-) > > diff --git a/src/profile.c b/src/profile.c > index 4b73026..f54749e 100644 > --- a/src/profile.c > +++ b/src/profile.c > @@ -435,6 +435,9 @@ > \ > \ > \ > + \ > + \ > + \ > " > > #define MAS_RECORD \ > @@ -484,6 +487,9 @@ > \ > \ > \ > + \ > + \ > + \ > " > > #define MNS_RECORD \ > @@ -524,12 +530,12 @@ > \ > \ > \ > - \ > - \ > - \ > \ > \ > \ > + \ > + \ > + \ > " > > #define SYNC_RECORD \ > @@ -1792,15 +1798,29 @@ static char *get_pce_record(struct ext_profile *ext, struct ext_io *l2cap, > static char *get_pse_record(struct ext_profile *ext, struct ext_io *l2cap, > struct ext_io *rfcomm) > { > - return g_strdup_printf(PSE_RECORD, rfcomm->chan, ext->version, > - ext->name); > + uint16_t psm = 0; > + uint8_t chan = 0; > + > + if (l2cap) > + psm = l2cap->psm; > + if (rfcomm) > + chan = rfcomm->chan; > + > + return g_strdup_printf(PSE_RECORD, chan, ext->version, ext->name, psm); > } > > static char *get_mas_record(struct ext_profile *ext, struct ext_io *l2cap, > struct ext_io *rfcomm) > { > - return g_strdup_printf(MAS_RECORD, rfcomm->chan, ext->version, > - ext->name); > + uint16_t psm = 0; > + uint8_t chan = 0; > + > + if (l2cap) > + psm = l2cap->psm; > + if (rfcomm) > + chan = rfcomm->chan; > + > + return g_strdup_printf(MAS_RECORD, chan, ext->version, ext->name, psm); > } > > static char *get_mns_record(struct ext_profile *ext, struct ext_io *l2cap, > @@ -2001,6 +2021,8 @@ static struct default_settings { > .uuid = OBEX_PSE_UUID, > .name = "Phone Book Access", > .channel = PBAP_DEFAULT_CHANNEL, > + .psm = BTD_PROFILE_PSM_AUTO, > + .mode = BT_IO_MODE_ERTM, > .authorize = true, > .get_record = get_pse_record, > .version = 0x0101, > @@ -2015,6 +2037,8 @@ static struct default_settings { > .uuid = OBEX_MAS_UUID, > .name = "Message Access", > .channel = MAS_DEFAULT_CHANNEL, > + .psm = BTD_PROFILE_PSM_AUTO, > + .mode = BT_IO_MODE_ERTM, > .authorize = true, > .get_record = get_mas_record, > .version = 0x0100 > -- > 1.9.1 Applied, thanks. -- Luiz Augusto von Dentz