l2cap: incoming SDP connection don't need remote features

This commit is contained in:
Matthias Ringwald 2021-10-29 11:12:24 +02:00
parent c2ac1eb3e0
commit c0f9182619

View File

@ -2684,6 +2684,8 @@ static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig
// add to connections list // add to connections list
btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel); btstack_linked_list_add_tail(&l2cap_channels, (btstack_linked_item_t *) channel);
//
if (required_level > LEVEL_0){
// send conn resp pending if remote supported features have not been received yet // send conn resp pending if remote supported features have not been received yet
if (hci_remote_features_available(handle)) { if (hci_remote_features_available(handle)) {
l2cap_handle_remote_supported_features_received(channel); l2cap_handle_remote_supported_features_received(channel);
@ -2691,6 +2693,9 @@ static void l2cap_handle_connection_request(hci_con_handle_t handle, uint8_t sig
channel->state_var |= L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND; channel->state_var |= L2CAP_CHANNEL_STATE_VAR_SEND_CONN_RESP_PEND;
hci_remote_features_query(handle); hci_remote_features_query(handle);
} }
} else {
l2cap_handle_security_level_incoming_sufficient(channel);
}
} }
void l2cap_accept_connection(uint16_t local_cid){ void l2cap_accept_connection(uint16_t local_cid){