From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Framework expects channel to be send. --- android/socket.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/socket.c b/android/socket.c index c3ce4f0..cc1bbb7 100644 --- a/android/socket.c +++ b/android/socket.c @@ -472,6 +472,11 @@ static void sdp_search_cb(sdp_list_t *recs, int err, gpointer data) goto fail; } + if (write(rfslot->fd, &chan, sizeof(chan)) != sizeof(chan)) { + error("Error sending RFCOMM channel"); + goto fail; + } + rfslot->real_sock = g_io_channel_unix_get_fd(io); rfslot->channel = chan; rfcomm_connected_list = g_list_append(rfcomm_connected_list, rfslot); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html