From 7fc7cb2b7a3f7532a7600b8367cc16432a5ee33f Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 18 Jun 2019 15:26:21 +0200 Subject: [PATCH] hci: add l2cap_cid to att_server_t --- src/hci.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hci.h b/src/hci.h index 5d97f3031..4a33cd13f 100644 --- a/src/hci.h +++ b/src/hci.h @@ -432,6 +432,10 @@ typedef struct { btstack_linked_list_t notification_requests; btstack_linked_list_t indication_requests; +#ifdef ENABLE_GATT_OVER_CLASSIC + uint16_t l2cap_cid; +#endif + uint16_t request_size; uint8_t request_buffer[ATT_REQUEST_BUFFER_SIZE];