patch-2.4.25 linux-2.4.25/net/bluetooth/hci_event.c
Next file: linux-2.4.25/net/bluetooth/hci_sock.c
Previous file: linux-2.4.25/net/bluetooth/hci_core.c
Back to the patch index
Back to the overall index
- Lines: 41
- Date:
2004-02-18 05:36:32.000000000 -0800
- Orig file:
linux-2.4.24/net/bluetooth/hci_event.c
- Orig date:
2003-08-25 04:44:44.000000000 -0700
diff -urN linux-2.4.24/net/bluetooth/hci_event.c linux-2.4.25/net/bluetooth/hci_event.c
@@ -452,6 +452,29 @@
hci_dev_unlock(hdev);
}
+/* Inquiry Result With RSSI */
+static inline void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev, struct sk_buff *skb)
+{
+ inquiry_info_with_rssi *info = (inquiry_info_with_rssi *) (skb->data + 1);
+ int num_rsp = *((__u8 *) skb->data);
+
+ BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
+
+ hci_dev_lock(hdev);
+ for (; num_rsp; num_rsp--) {
+ inquiry_info tmp;
+ bacpy(&tmp.bdaddr, &info->bdaddr);
+ tmp.pscan_rep_mode = info->pscan_rep_mode;
+ tmp.pscan_period_mode = info->pscan_period_mode;
+ tmp.pscan_mode = 0x00;
+ memcpy(tmp.dev_class, &info->dev_class, 3);
+ tmp.clock_offset = info->clock_offset;
+ info++;
+ inquiry_cache_update(hdev, &tmp);
+ }
+ hci_dev_unlock(hdev);
+}
+
/* Connect Request */
static inline void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
{
@@ -748,6 +771,10 @@
hci_inquiry_result_evt(hdev, skb);
break;
+ case EVT_INQUIRY_RESULT_WITH_RSSI:
+ hci_inquiry_result_with_rssi_evt(hdev, skb);
+ break;
+
case EVT_CONN_REQUEST:
hci_conn_request_evt(hdev, skb);
break;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)