1 /*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <unordered_set>
18
19 #include "main/shim/dumpsys.h"
20 #include "osi/include/log.h"
21 #include "stack/acl/acl.h"
22 #include "types/raw_address.h"
23
Reset()24 void tACL_CONN::Reset() {
25 memset(peer_le_features, 0, sizeof(peer_le_features));
26 peer_le_features_valid = false;
27 memset(peer_lmp_feature_pages, 0, sizeof(peer_lmp_feature_pages));
28 memset(peer_lmp_feature_valid, 0, sizeof(peer_lmp_feature_valid));
29 active_remote_addr = RawAddress::kEmpty;
30 conn_addr = RawAddress::kEmpty;
31 remote_addr = RawAddress::kEmpty;
32 link_up_issued = false;
33 transport = BT_TRANSPORT_AUTO;
34 flush_timeout_in_ticks = 0;
35 hci_handle = 0;
36 link_super_tout = 0;
37 pkt_types_mask = 0;
38 active_remote_addr_type = BLE_ADDR_PUBLIC;
39 conn_addr_type = BLE_ADDR_PUBLIC;
40 disconnect_reason = 0;
41 encrypt_state_ = BTM_ACL_ENCRYPT_STATE_IDLE;
42 is_encrypted = false;
43 link_role = HCI_ROLE_CENTRAL;
44 switch_role_failed_attempts = 0;
45 memset(&remote_version_info, 0, sizeof(remote_version_info));
46 rs_disc_pending = BTM_SEC_RS_NOT_PENDING;
47 switch_role_state_ = BTM_ACL_SWKEY_STATE_IDLE;
48 sca = 0;
49 }
50