You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2022/06/27 07:46:11 UTC

[GitHub] [mynewt-nimble] sjanc commented on a diff in pull request #1271: L2CAP COC: added buffers for incoming SDU

sjanc commented on code in PR #1271:
URL: https://github.com/apache/mynewt-nimble/pull/1271#discussion_r907058949


##########
nimble/host/src/ble_l2cap_coc.c:
##########
@@ -40,6 +41,10 @@ static os_membuf_t ble_l2cap_coc_srv_mem[
 
 static struct os_mempool ble_l2cap_coc_srv_pool;
 
+static struct os_mbuf *rx_sdu_list[BLE_L2CAP_SDU_BUFF_CNT];
+static struct os_mbuf *tx_sdu_list[BLE_L2CAP_SDU_BUFF_CNT];
+static int current_sdu;
+

Review Comment:
   those should be per LE COC channel, or maybe endpoint



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org