-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplescan.c
61 lines (44 loc) · 1.23 KB
/
simplescan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
int main(int argc, char **argv) {
inquiry_info *devices = NULL;
int max_rsp, num_rsp;
int adapter_id, sock, len, flags;
int i;
char addr[19] = { 0 };
char name[248] = { 0 };
adapter_id = hci_get_route(NULL);
printf("%i\n", adapter_id);
sock = hci_open_dev(adapter_id);
printf("%i\n", sock);
if (adapter_id < 0 || sock < 0) {
perror("opening socket");
exit(1);
}
len = 8;
max_rsp = 255;
flags = IREQ_CACHE_FLUSH;
devices = (inquiry_info*)malloc(max_rsp * sizeof(inquiry_info));
// method to dicover devices
// returns a number of discovered devices
num_rsp = hci_inquiry(adapter_id, len, max_rsp, NULL, &devices, flags);
// check error
if (num_rsp < 0) perror("hci_inquiry");
for (i = 0; i < num_rsp; i++) {
ba2str(&(devices+i)->bdaddr, addr);
memset(name, 0, sizeof(name));
// get teh friendly name of discovered devices
if (0 != hci_read_remote_name(sock, &(devices+i)->bdaddr, sizeof(name), name, 0)) {
strcpy(name, "[unknown]");
}
printf("%s %s\n", addr, name);
}
free(devices);
close(sock);
return 0;
}