pull/6188/head
paul-szczepanek-arm 2018-01-19 16:53:10 +00:00
parent 0367cebaa2
commit ad8dd5fb2c
1 changed files with 8 additions and 3 deletions

View File

@ -584,7 +584,10 @@ public:
connection_handle_t connection connection_handle_t connection
) { ) {
if (_app_event_handler) { if (_app_event_handler) {
_app_event_handler->linkEncryptionResult(connection, link_encryption_t::NOT_ENCRYPTED); _app_event_handler->linkEncryptionResult(
connection,
link_encryption_t::NOT_ENCRYPTED
);
} }
} }
@ -665,8 +668,10 @@ public:
} }
} }
virtual void on_keys_distributed_ltk(connection_handle_t connection, virtual void on_keys_distributed_ltk(
const ltk_t ltk) { connection_handle_t connection,
const ltk_t ltk
) {
db.update_entry_ltk(connection, ltk); db.update_entry_ltk(connection, ltk);
} }