This is an automated email from the ASF dual-hosted git repository. naraj pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
commit 1d9f377d95b8ca854105f4ab966aa75a1d10cc1b Author: MichaĆ Narajowski <michal.narajow...@codecoup.pl> AuthorDate: Thu May 30 16:20:48 2019 +0200 apps/bttester: Add encryption key size logging --- apps/bttester/src/gap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/bttester/src/gap.c b/apps/bttester/src/gap.c index 38bbf73..a835ec8 100644 --- a/apps/bttester/src/gap.c +++ b/apps/bttester/src/gap.c @@ -918,9 +918,10 @@ static void print_conn_desc(const struct ble_gap_conn_desc *desc) desc->peer_id_addr.type); print_addr(desc->peer_id_addr.val); console_printf(" conn_itvl=%d conn_latency=%d supervision_timeout=%d " - "encrypted=%d authenticated=%d bonded=%d\n", + "key_sz=%d encrypted=%d authenticated=%d bonded=%d\n", desc->conn_itvl, desc->conn_latency, desc->supervision_timeout, + desc->sec_state.key_size, desc->sec_state.encrypted, desc->sec_state.authenticated, desc->sec_state.bonded);