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