diff --git a/emulator/bthost.c b/emulator/bthost.c
index 2e00d8f..4ce720e 100644
--- a/emulator/bthost.c
+++ b/emulator/bthost.c
return;
}
+static void evt_auth_complete(struct bthost *bthost, const void *data,
+ uint8_t len)
+{
+ const struct bt_hci_evt_auth_complete *ev = data;
+
+ if (len < sizeof(*ev))
+ return;
+}
+
static void evt_pin_code_request(struct bthost *bthost, const void *data,
uint8_t len)
{
break;
case BT_HCI_EVT_AUTH_COMPLETE:
+ evt_auth_complete(bthost, param, hdr->plen);
break;
case BT_HCI_EVT_PIN_CODE_REQUEST: