mirror of https://github.com/ARMmbed/mbed-os.git
naming fix
parent
5474083469
commit
bbe408e82b
|
@ -100,8 +100,8 @@ struct bonded_list_t {
|
||||||
|
|
||||||
class SecurityManagerEventHandler {
|
class SecurityManagerEventHandler {
|
||||||
SecurityManagerEventHandler() : _app_event_handler(NULL) { };
|
SecurityManagerEventHandler() : _app_event_handler(NULL) { };
|
||||||
virtual void security_setup_initiated(connection_handle_t handle, bool allowBonding,
|
virtual void security_setup_initiated(connection_handle_t handle, bool allow_bonding,
|
||||||
bool requireMITM, SecurityManager::SecurityIOCapabilities_t iocaps) {
|
bool require_mitm, SecurityManager::SecurityIOCapabilities_t iocaps) {
|
||||||
if (_app_event_handler) {
|
if (_app_event_handler) {
|
||||||
_app_event_handler->securitySetupInitiated(handle, allowBonding, requireMITM, iocaps);
|
_app_event_handler->securitySetupInitiated(handle, allowBonding, requireMITM, iocaps);
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ class SecurityManagerEventHandler {
|
||||||
_app_event_handler->securitySetupCompleted(handle, status);
|
_app_event_handler->securitySetupCompleted(handle, status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
virtual void link_secured(connection_handle_t handle, SecurityManager::SecurityMode_t securityMode) {
|
virtual void link_secured(connection_handle_t handle, SecurityManager::SecurityMode_t security_mode) {
|
||||||
if (_app_event_handler) {
|
if (_app_event_handler) {
|
||||||
_app_event_handler->linkSecured(handle, securityMode);
|
_app_event_handler->linkSecured(handle, securityMode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue