KKopyscinski commented on a change in pull request #773:
URL: https://github.com/apache/mynewt-nimble/pull/773#discussion_r458079679
##########
File path: nimble/host/src/ble_att_svr.c
##########
@@ -724,6 +707,11 @@ ble_att_svr_rx_mtu(uint16_t conn_handle, struct os_mbuf
**rxom)
txom = NULL;
mtu = 0;
+ if (cid != BLE_L2CAP_CID_ATT) {
Review comment:
```
#if MYNEWT_VAL(BLE_EATT_CHAN_NUM) > 0
if (cid != BLE_L2CAP_CID_ATT) {
rc = att_err = BLE_ATT_ERR_REQ_NOT_SUPPORTED;
goto done;
}
#endif
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]