From 5d430ce0d88869ceaeabaf9fbd46803c599ba135 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Wed, 5 Nov 2014 10:41:21 +0200 Subject: [PATCH] android/hal-sco: Add remote address parameter in Get SCO fd command --- android/sco-ipc-api.txt | 2 +- android/sco-msg.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/android/sco-ipc-api.txt b/android/sco-ipc-api.txt index 17372fe61..27d5ef216 100644 --- a/android/sco-ipc-api.txt +++ b/android/sco-ipc-api.txt @@ -32,6 +32,6 @@ SCO Audio Service (ID 0) Opcode 0x01 - Get SCO fd command - Command parameters: + Command parameters: Remote address (6 octets) Response parameters: MTU (2 octets) File descriptor (inline) diff --git a/android/sco-msg.h b/android/sco-msg.h index 74f25b8cb..d1b13d70d 100644 --- a/android/sco-msg.h +++ b/android/sco-msg.h @@ -31,6 +31,10 @@ static const char BLUEZ_SCO_SK_PATH[] = "\0bluez_sco_socket"; #define SCO_OP_STATUS IPC_OP_STATUS #define SCO_OP_GET_FD 0x01 +struct sco_cmd_get_fd { + uint8_t bdaddr[6]; +} __attribute__((packed)); + struct sco_rsp_get_fd { uint16_t mtu; } __attribute__((packed)); -- 2.47.3