bluez/tools/hcisecfilter.c

94 lines
3.0 KiB
C
Raw Normal View History

2002-03-09 05:12:35 +08:00
#include <stdio.h>
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
int main(void)
{
uint32_t type_mask;
uint32_t event_mask[2];
uint32_t ocf_mask[4];
// Packet types
memset((void *)&type_mask, 0, sizeof(type_mask));
hci_set_bit(HCI_EVENT_PKT, &type_mask);
2004-04-24 19:22:47 +08:00
printf("Type mask: { 0x%x }\n", type_mask);
2002-03-09 05:12:35 +08:00
// Events
memset((void *)event_mask, 0, sizeof(event_mask));
hci_set_bit(EVT_INQUIRY_COMPLETE, event_mask);
hci_set_bit(EVT_INQUIRY_RESULT, event_mask);
hci_set_bit(EVT_CONN_COMPLETE, event_mask);
hci_set_bit(EVT_CONN_REQUEST, event_mask);
hci_set_bit(EVT_DISCONN_COMPLETE, event_mask);
hci_set_bit(EVT_AUTH_COMPLETE, event_mask);
hci_set_bit(EVT_ENCRYPT_CHANGE, event_mask);
hci_set_bit(EVT_CMD_COMPLETE, event_mask);
hci_set_bit(EVT_CMD_STATUS, event_mask);
hci_set_bit(EVT_READ_REMOTE_FEATURES_COMPLETE, event_mask);
hci_set_bit(EVT_READ_REMOTE_VERSION_COMPLETE, event_mask);
hci_set_bit(EVT_REMOTE_NAME_REQ_COMPLETE, event_mask);
2004-04-24 19:22:47 +08:00
printf("Event mask: { 0x%x, 0x%x }\n", event_mask[0], event_mask[1]);
2002-03-09 05:12:35 +08:00
// OGF_LINK_CTL
memset((void *) ocf_mask, 0, sizeof(ocf_mask));
hci_set_bit(OCF_INQUIRY, ocf_mask);
hci_set_bit(OCF_REMOTE_NAME_REQ, ocf_mask);
hci_set_bit(OCF_READ_REMOTE_FEATURES, ocf_mask);
hci_set_bit(OCF_READ_REMOTE_VERSION, ocf_mask);
2004-04-24 19:22:47 +08:00
printf("OGF_LINK_CTL: { 0x%x, 0x%x, 0x%x, 0x%x }\n",
2002-03-09 05:12:35 +08:00
ocf_mask[0], ocf_mask[1], ocf_mask[2], ocf_mask[3]);
// OGF_LINK_POLICY
memset((void *) ocf_mask, 0, sizeof(ocf_mask));
hci_set_bit(OCF_ROLE_DISCOVERY, ocf_mask);
hci_set_bit(OCF_READ_LINK_POLICY, ocf_mask);
2004-04-24 19:22:47 +08:00
printf("OGF_LINK_POLICY: { 0x%x, 0x%x, 0x%x, 0x%x }\n",
2002-03-09 05:12:35 +08:00
ocf_mask[0], ocf_mask[1], ocf_mask[2], ocf_mask[3]);
// OGF_HOST_CTL
memset((void *) ocf_mask, 0, sizeof(ocf_mask));
hci_set_bit(OCF_READ_AUTH_ENABLE, ocf_mask);
hci_set_bit(OCF_READ_ENCRYPT_MODE, ocf_mask);
hci_set_bit(OCF_READ_LOCAL_NAME, ocf_mask);
hci_set_bit(OCF_READ_CLASS_OF_DEV, ocf_mask);
2002-12-17 13:31:24 +08:00
hci_set_bit(OCF_READ_VOICE_SETTING, ocf_mask);
hci_set_bit(OCF_READ_TRANSMIT_POWER_LEVEL, ocf_mask);
2002-03-09 05:12:35 +08:00
2004-04-24 19:22:47 +08:00
printf("OGF_HOST_CTL: { 0x%x, 0x%x, 0x%x, 0x%x }\n",
2002-03-09 05:12:35 +08:00
ocf_mask[0], ocf_mask[1], ocf_mask[2], ocf_mask[3]);
// OGF_INFO_PARAM
memset((void *) ocf_mask, 0, sizeof(ocf_mask));
hci_set_bit(OCF_READ_LOCAL_VERSION, ocf_mask);
hci_set_bit(OCF_READ_LOCAL_FEATURES, ocf_mask);
hci_set_bit(OCF_READ_BUFFER_SIZE, ocf_mask);
hci_set_bit(OCF_READ_BD_ADDR, ocf_mask);
hci_set_bit(OCF_READ_BD_ADDR, ocf_mask);
2004-04-24 19:22:47 +08:00
printf("OGF_INFO_PARAM: { 0x%x, 0x%x, 0x%x, 0x%x}\n",
2002-03-09 05:12:35 +08:00
ocf_mask[0], ocf_mask[1], ocf_mask[2], ocf_mask[3]);
2003-01-28 09:55:08 +08:00
// OGF_INFO_PARAM
memset((void *) ocf_mask, 0, sizeof(ocf_mask));
hci_set_bit(OCF_READ_FAILED_CONTACT_COUNTER, ocf_mask);
hci_set_bit(OCF_RESET_FAILED_CONTACT_COUNTER, ocf_mask);
hci_set_bit(OCF_GET_LINK_QUALITY, ocf_mask);
hci_set_bit(OCF_READ_RSSI, ocf_mask);
2004-04-24 19:22:47 +08:00
printf("OGF_STATUS_PARAM: { 0x%x, 0x%x, 0x%x, 0x%x}\n",
2003-01-28 09:55:08 +08:00
ocf_mask[0], ocf_mask[1], ocf_mask[2], ocf_mask[3]);
2004-04-24 19:22:47 +08:00
return 0;
2002-03-09 05:12:35 +08:00
}