2011-02-07 20:11:36

by Andre Dieb Martins

[permalink] [raw]
Subject: [PATCH] Update gatt listen mode.

Update gatt's listen-mode flag whenever connect_cb() is called again.
---
attrib/client.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/attrib/client.c b/attrib/client.c
index 44638d3..ec5fcf2 100644
--- a/attrib/client.c
+++ b/attrib/client.c
@@ -356,6 +356,7 @@ static int l2cap_connect(struct gatt_service *gatt, GError **gerr,

if (gatt->attrib != NULL) {
gatt->attrib = g_attrib_ref(gatt->attrib);
+ gatt->listen = listen;
return 0;
}

--
1.7.1



2011-02-08 23:09:09

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Update gatt listen mode.

Hi Andr?,

On Mon, Feb 07, 2011, Andre Dieb Martins wrote:
> Update gatt's listen-mode flag whenever connect_cb() is called again.
> ---
> attrib/client.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/attrib/client.c b/attrib/client.c
> index 44638d3..ec5fcf2 100644
> --- a/attrib/client.c
> +++ b/attrib/client.c
> @@ -356,6 +356,7 @@ static int l2cap_connect(struct gatt_service *gatt, GError **gerr,
>
> if (gatt->attrib != NULL) {
> gatt->attrib = g_attrib_ref(gatt->attrib);
> + gatt->listen = listen;
> return 0;
> }

Thanks. The patch has been pushed upstream.

Johan