Return-Path: MIME-Version: 1.0 In-Reply-To: <4447611680690660620@unknownmsgid> References: <4447611680690660620@unknownmsgid> From: jaikumar Ganesh Date: Tue, 21 Sep 2010 17:05:20 -0700 Message-ID: Subject: Re: [PATCH] Fix Headset Audio gateway SDP record. To: y@google.com Cc: linux-bluetooth@vger.kernel.org, Jaikumar Ganesh Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Please ignore. Sending again with a valid "to address". On Tue, Sep 21, 2010 at 4:50 PM, wrote: > From: Jaikumar Ganesh > > Headset Audio Gateway does not have the Supported Features > in the SDP records according to the HSP specification. > --- > ?tools/sdptool.c | ? ?6 +----- > ?1 files changed, 1 insertions(+), 5 deletions(-) > > diff --git a/tools/sdptool.c b/tools/sdptool.c > index d06b159..140a46a 100644 > --- a/tools/sdptool.c > +++ b/tools/sdptool.c > @@ -1477,8 +1477,7 @@ static int add_headset_ag(sdp_session_t *session, svc_info_t *si) > ? ? ? ?sdp_list_t *aproto, *proto[2]; > ? ? ? ?sdp_record_t record; > ? ? ? ?uint8_t u8 = si->channel ? si->channel : 7; > - ? ? ? uint16_t u16 = 0x17; > - ? ? ? sdp_data_t *channel, *features; > + ? ? ? sdp_data_t *channel; > ? ? ? ?uint8_t netid = si->network ? si->network : 0x01; // ???? profile document > ? ? ? ?sdp_data_t *network = sdp_data_alloc(SDP_UINT8, &netid); > ? ? ? ?int ret = 0; > @@ -1511,9 +1510,6 @@ static int add_headset_ag(sdp_session_t *session, svc_info_t *si) > ? ? ? ?proto[1] = sdp_list_append(proto[1], channel); > ? ? ? ?apseq = sdp_list_append(apseq, proto[1]); > > - ? ? ? features = sdp_data_alloc(SDP_UINT16, &u16); > - ? ? ? sdp_attr_add(&record, SDP_ATTR_SUPPORTED_FEATURES, features); > - > ? ? ? ?aproto = sdp_list_append(0, apseq); > ? ? ? ?sdp_set_access_protos(&record, aproto); > > -- > 1.6.5.7 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at ?http://vger.kernel.org/majordomo-info.html >