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
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