void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
bool persistent);
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
- u8 bdaddr_type, u16 min_interval, u16 max_interval,
- u16 latency, u16 timeout);
+ u8 bdaddr_type, u8 store_hint, u16 min_interval,
+ u16 max_interval, u16 latency, u16 timeout);
void mgmt_reenable_advertising(struct hci_dev *hdev);
void mgmt_smp_complete(struct hci_conn *conn, bool complete);
if (test_bit(HCI_CONN_MASTER, &hcon->flags)) {
struct hci_conn_params *params;
+ u8 store_hint;
hci_dev_lock(hdev);
params->conn_max_interval = max;
params->conn_latency = latency;
params->supervision_timeout = timeout;
+ store_hint = 0x01;
+ } else{
+ store_hint = 0x00;
}
hci_dev_unlock(hdev);
- mgmt_new_conn_param(hdev, &hcon->dst, hcon->dst_type, min, max,
- latency, timeout);
+ mgmt_new_conn_param(hdev, &hcon->dst, hcon->dst_type,
+ store_hint, min, max, latency, timeout);
}
cp.handle = ev->handle;
sizeof(rsp), &rsp);
if (!err) {
+ u8 store_hint;
+
+ store_hint = hci_le_conn_update(hcon, min, max, latency,
+ to_multiplier);
mgmt_new_conn_param(hcon->hdev, &hcon->dst, hcon->dst_type,
- min, max, latency, to_multiplier);
+ store_hint, min, max, latency,
+ to_multiplier);
- hci_le_conn_update(hcon, min, max, latency, to_multiplier);
}
return 0;
}
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
- u8 bdaddr_type, u16 min_interval, u16 max_interval,
- u16 latency, u16 timeout)
+ u8 bdaddr_type, u8 store_hint, u16 min_interval,
+ u16 max_interval, u16 latency, u16 timeout)
{
struct mgmt_ev_new_conn_param ev;
memset(&ev, 0, sizeof(ev));
bacpy(&ev.addr.bdaddr, bdaddr);
ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
- ev.store_hint = 0x00;
+ ev.store_hint = store_hint;
ev.min_interval = cpu_to_le16(min_interval);
ev.max_interval = cpu_to_le16(max_interval);
ev.latency = cpu_to_le16(latency);