From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> --- android/socket.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/socket.c b/android/socket.c index 20f4e38..0188646 100644 --- a/android/socket.c +++ b/android/socket.c @@ -27,6 +27,7 @@ #include <glib.h> #include <stdbool.h> +#include <unistd.h> #include <errno.h> #include "lib/bluetooth.h" @@ -292,6 +293,10 @@ static int handle_listen(void *buf) rfslot->real_sock = g_io_channel_unix_get_fd(io); rfcomm_srv_list = g_list_append(rfcomm_srv_list, rfslot); + /* TODO: Check this */ + if (write(rfslot->fd, &ch, sizeof(ch)) < 0) + return -1; + DBG("real_sock %d fd %d hal_fd %d", rfslot->real_sock, rfslot->fd, rfslot->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