From: Tyszkowski Jakub <jakub.tyszkowski@tieto.com>
To: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>,
linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 2/8] android/tester-ng: Add PAN init test case
Date: Tue, 29 Jul 2014 15:07:28 +0200 [thread overview]
Message-ID: <53D79C90.9050008@tieto.com> (raw)
In-Reply-To: <1406635292-30691-3-git-send-email-ravikumar.veeramally@linux.intel.com>
Hi Ravi,
On 07/29/2014 02:01 PM, Ravi kumar Veeramally wrote:
> ---
> android/Makefile.am | 1 +
> android/tester-main.c | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++
> android/tester-main.h | 8 ++++++
> android/tester-pan.c | 48 +++++++++++++++++++++++++++++++
> 4 files changed, 137 insertions(+)
> create mode 100644 android/tester-pan.c
>
> diff --git a/android/Makefile.am b/android/Makefile.am
> index 84a05a8..66cb8c1 100644
> --- a/android/Makefile.am
> +++ b/android/Makefile.am
> @@ -181,6 +181,7 @@ android_android_tester_ng_SOURCES = emulator/btdev.h emulator/btdev.c \
> android/tester-bluetooth.c \
> android/tester-socket.c \
> android/tester-hidhost.c \
> + android/tester-pan.c \
> android/tester-gatt.c \
> android/tester-main.h android/tester-main.c
>
> diff --git a/android/tester-main.c b/android/tester-main.c
> index 91a79ba..5e71809 100644
> --- a/android/tester-main.c
> +++ b/android/tester-main.c
> @@ -783,6 +783,37 @@ static bthh_callbacks_t bthh_callbacks = {
> .virtual_unplug_cb = NULL
> };
>
> +static void pan_control_state_cb(btpan_control_state_t state,
> + bt_status_t error, int local_role,
> + const char *ifname)
> +{
> + struct step *step = g_new0(struct step, 1);
> +
> + step->callback = CB_PAN_CONTROL_STATE;
> + step->callback_result.state = state;
> +
> + schedule_callback_call(step);
> +}
> +
> +static void pan_connection_state_cb(btpan_connection_state_t state,
> + bt_status_t error,
> + const bt_bdaddr_t *bd_addr,
> + int local_role, int remote_role)
> +{
> + struct step *step = g_new0(struct step, 1);
> +
> + step->callback = CB_PAN_CONNECTION_STATE;
> + step->callback_result.state = state;
> +
> + schedule_callback_call(step);
> +}
It would be nice to verify more than one callback parameter.
Fortunately PAN has only 2 callbacks.
Just saying. :) I know that this also applies to some HID cases (there
is 'TODO' somewhere).
Regards,
Jakub
next prev parent reply other threads:[~2014-07-29 13:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-29 12:01 [PATCH 0/8] Add PAN test cases Ravi kumar Veeramally
2014-07-29 12:01 ` [PATCH 1/8] android/tester: Fix memory leak Ravi kumar Veeramally
2014-07-29 12:01 ` [PATCH 2/8] android/tester-ng: Add PAN init test case Ravi kumar Veeramally
2014-07-29 13:07 ` Tyszkowski Jakub [this message]
2014-07-29 12:01 ` [PATCH 3/8] android/tester-ng: Add PAN Connect " Ravi kumar Veeramally
2014-07-29 12:01 ` [PATCH 4/8] android/tester-ng: Add PAN Disconnect " Ravi kumar Veeramally
2014-07-29 12:01 ` [PATCH 5/8] anrdroid/tester-ng: Add PAN Get Local Role " Ravi kumar Veeramally
2014-07-29 13:15 ` Grzegorz Kolodziejczyk
2014-07-29 12:01 ` [PATCH 6/8] android/tester-ng: Add PAN Enable PANU " Ravi kumar Veeramally
2014-07-29 12:01 ` [PATCH 7/8] android/tester-ng: Add PAN Enable NAP " Ravi kumar Veeramally
2014-07-29 13:15 ` Tyszkowski Jakub
2014-07-29 12:01 ` [PATCH 8/8] android/tester-ng: Add PAN Enable None " Ravi kumar Veeramally
2014-07-30 10:06 ` [PATCH 0/8] Add PAN test cases Szymon Janc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53D79C90.9050008@tieto.com \
--to=jakub.tyszkowski@tieto.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=ravikumar.veeramally@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.