From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: MIME-Version: 1.0 In-Reply-To: <20110822072228.GA31063@dell> References: <1313133349-4215-1-git-send-email-bulislaw@linux.com> <20110822072228.GA31063@dell> Date: Mon, 22 Aug 2011 10:12:11 +0200 Message-ID: Subject: Re: [PATCH 1/3] Add SetRemoteProperties method for OOB COD setting From: Bartosz Szatkowski To: Bartosz Szatkowski , linux-bluetooth@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: On Mon, Aug 22, 2011 at 9:22 AM, Johan Hedberg wrote: > Hi Bartosz, > > On Fri, Aug 12, 2011, Bartosz Szatkowski wrote: >> +struct oob_remote_parameters { >> +     bdaddr_t local; >> +     bdaddr_t peer; >> +     const char *address; >> +     uint32_t class; >> +}; > > Could you add a "gboolean device_found;" to this struct and then use it > as follows: OK > >> +static DBusMessage *parse_class(DBusMessageIter *value, >> +                     struct oob_remote_parameters *params, DBusMessage *msg) >> +{ >> +     if (dbus_message_iter_get_arg_type(value) != DBUS_TYPE_UINT32) >> +             return btd_error_invalid_args(msg); >> + >> +     dbus_message_iter_get_basic(value, ¶ms->class); > >        params->device_found = TRUE; I would move (above) line to set_class function (and same for other patches) as there is no point of emiting device_found in case of some error when trying to set it, it would look something like: static void set_class(struct oob_remote_parameters *params) +{ + if (write_remote_class(¶ms->local, ¶ms->peer, + params->class) < 0) { + error("Setting device class failed"); + + return; + } params->device_found = TRUE; +} -- Pozdrowienia, Bartosz Szatkowski