From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Szymon Janc To: CC: Szymon Janc Subject: [PATCH 5/5] android/hal: Add support for handling SSP request event Date: Tue, 29 Oct 2013 11:07:35 +0100 Message-ID: <1383041255-26549-5-git-send-email-szymon.janc@tieto.com> In-Reply-To: <1383041255-26549-1-git-send-email-szymon.janc@tieto.com> References: <1383041255-26549-1-git-send-email-szymon.janc@tieto.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- android/hal-bluetooth.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c index 75dbc68..c22de6f 100644 --- a/android/hal-bluetooth.c +++ b/android/hal-bluetooth.c @@ -90,6 +90,19 @@ static void handle_pin_request(void *buf) bt_hal_cbacks->pin_request_cb(addr, name, ev->class_of_dev); } +static void handle_ssp_request(void *buf) +{ + struct hal_ev_ssp_request *ev = buf; + bt_bdaddr_t *addr = (bt_bdaddr_t *) ev->bdaddr; + bt_bdname_t *name = (bt_bdname_t *) ev->name; + + if (!bt_hal_cbacks->ssp_request_cb) + return; + + bt_hal_cbacks->ssp_request_cb(addr, name, ev->class_of_dev, + ev->pairing_variant, ev->passkey); +} + void bt_thread_associate(void) { if (bt_hal_cbacks->thread_evt_cb) @@ -126,6 +139,9 @@ void bt_notify_adapter(uint16_t opcode, void *buf, uint16_t len) case HAL_EV_PIN_REQUEST: handle_pin_request(buf); break; + case HAL_EV_SSP_REQUEST: + handle_ssp_request(buf); + break; default: DBG("Unhandled callback opcode=0x%x", opcode); break; -- 1.8.4.1