Diff between cb9780d0512e314cc14157e272f0b7d490d7321c and 3595dbf2ead1ef4b119275154d53c2e283b4ed7c

Changed Files

File Additions Deletions Status
tools/parser/hci.c +5 -0 modified

Full Patch

diff --git a/tools/parser/hci.c b/tools/parser/hci.c
index 634dbc5..a517fb4 100644
--- a/tools/parser/hci.c
+++ b/tools/parser/hci.c
@@ -3514,11 +3514,16 @@ static inline void remote_host_features_notify_dump(int level, struct frame *frm
 static inline void evt_le_conn_complete_dump(int level, struct frame *frm)
 {
 	evt_le_connection_complete *evt = frm->ptr;
+	char addr[18];
 
 	p_indent(level, frm);
 	printf("status 0x%2.2x handle %d, role %s\n",
 					evt->status, btohs(evt->handle),
 					evt->role ? "slave" : "master");
+
+	p_indent(level, frm);
+	p_ba2str(&evt->peer_bdaddr, addr);
+	printf("bdaddr %s (%s)\n", addr, bdaddrtype2str(evt->peer_bdaddr_type));
 }
 
 static inline void evt_le_advertising_report_dump(int level, struct frame *frm)