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 00231a3..4722cf8 100644 --- a/android/socket.c +++ b/android/socket.c @@ -522,6 +522,11 @@ static void sdp_search_cb(sdp_list_t *recs, int err, gpointer data) goto fail; } + if (write(rfsock->fd, &chan, sizeof(chan)) != sizeof(chan)) { + error("Error sending RFCOMM channel"); + goto fail; + } + rfsock->real_sock = g_io_channel_unix_get_fd(io); rfsock->channel = chan; connections = g_list_append(connections, rfsock); -- 1.8.3.2 -- 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