aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2011-03-16 08:29:35 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-03-31 13:22:54 -0400
commit1f6c6378c59f3ddac9ed89a68ccefe2611300c09 (patch)
tree14dd2ecd69225f3535f72c461575d289c879dd2f /include/net/bluetooth/hci.h
parentf0681a68dd3a32699891cd1de93459aee5af7728 (diff)
Bluetooth: Add define for the maximum name length on HCI level
This patch adds a clear define for the maximum device name length in HCI messages and thereby avoids magic numbers in the code. Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r--include/net/bluetooth/hci.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index ec6acf2f1c0b..1cd031cd1c4d 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -535,15 +535,17 @@ struct hci_cp_delete_stored_link_key {
535 __u8 delete_all; 535 __u8 delete_all;
536} __packed; 536} __packed;
537 537
538#define HCI_MAX_NAME_LENGTH 248
539
538#define HCI_OP_WRITE_LOCAL_NAME 0x0c13 540#define HCI_OP_WRITE_LOCAL_NAME 0x0c13
539struct hci_cp_write_local_name { 541struct hci_cp_write_local_name {
540 __u8 name[248]; 542 __u8 name[HCI_MAX_NAME_LENGTH];
541} __packed; 543} __packed;
542 544
543#define HCI_OP_READ_LOCAL_NAME 0x0c14 545#define HCI_OP_READ_LOCAL_NAME 0x0c14
544struct hci_rp_read_local_name { 546struct hci_rp_read_local_name {
545 __u8 status; 547 __u8 status;
546 __u8 name[248]; 548 __u8 name[HCI_MAX_NAME_LENGTH];
547} __packed; 549} __packed;
548 550
549#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16 551#define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
@@ -745,7 +747,7 @@ struct hci_ev_auth_complete {
745struct hci_ev_remote_name { 747struct hci_ev_remote_name {
746 __u8 status; 748 __u8 status;
747 bdaddr_t bdaddr; 749 bdaddr_t bdaddr;
748 __u8 name[248]; 750 __u8 name[HCI_MAX_NAME_LENGTH];
749} __packed; 751} __packed;
750 752
751#define HCI_EV_ENCRYPT_CHANGE 0x08 753#define HCI_EV_ENCRYPT_CHANGE 0x08