summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2011-03-30 12:24:42 +0300
committerJohan Hedberg <johan.hedberg@nokia.com>2011-03-30 12:25:08 +0300
commit56fe0673840b9f599bd0127b77c45124c37c5890 (patch)
tree6c9044d8cc7f2e38e28c80b2e187500d8072f200 /lib
parentc76086fd596ac11a890cec157abcd4ce32b523a2 (diff)
downloadbluez-56fe0673840b9f599bd0127b77c45124c37c5890.tar.gz
mgmt: Add support for remote_name event
Diffstat (limited to 'lib')
-rw-r--r--lib/mgmt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/mgmt.h b/lib/mgmt.h
index 667944b72..fdec6c289 100644
--- a/lib/mgmt.h
+++ b/lib/mgmt.h
@@ -281,3 +281,9 @@ struct mgmt_ev_device_found {
int8_t rssi;
uint8_t eir[HCI_MAX_EIR_LENGTH];
} __packed;
+
+#define MGMT_EV_REMOTE_NAME 0x0013
+struct mgmt_ev_remote_name {
+ bdaddr_t bdaddr;
+ uint8_t name[MGMT_MAX_NAME_LENGTH];
+} __packed;