From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Android framework expects to receive channel number as int. --- android/socket.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/android/socket.c b/android/socket.c index 936b70e..e4479e5 100644 --- a/android/socket.c +++ b/android/socket.c @@ -376,6 +376,13 @@ static int handle_listen(void *buf) rfsock->real_sock = g_io_channel_unix_get_fd(io); servers = g_list_append(servers, rfsock); + /* TODO: Check this */ + if (write(rfsock->fd, &chan, sizeof(chan)) != sizeof(chan)) { + error("Error sending RFCOMM channel"); + cleanup_rfsock(rfsock); + return -1; + } + DBG("real_sock %d fd %d hal_fd %d", rfsock->real_sock, rfsock->fd, hal_fd); -- 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