[BLE] Fixed inconsistent casing issue for SecurityDb

pull/6494/head
Donatien Garnier 2018-03-28 10:44:09 +01:00
parent 25a2d15f05
commit 8b66c4bd28
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
#ifndef PAL_MEMORY_SECURITY_DB_H_
#define PAL_MEMORY_SECURITY_DB_H_
#include "SecurityDB.h"
#include "SecurityDb.h"
namespace ble {
namespace pal {

View File

@ -84,9 +84,9 @@ struct SecurityEntryIdentity_t {
};
/**
* SecurityDB holds the state for active connections and bonded devices.
* SecurityDb holds the state for active connections and bonded devices.
* Keys can be stored in NVM and are returned via callbacks.
* SecurityDB is responsible for serialising any requests and keeping
* SecurityDb is responsible for serialising any requests and keeping
* the store in a consistent state.
* Active connections state must be returned immediately.
*/

View File

@ -30,7 +30,7 @@
#include "CordioPalGenericAccessService.h"
#include "ble/generic/GenericGap.h"
#include "ble/generic/GenericSecurityManager.h"
#include "ble/pal/MemorySecurityDB.h"
#include "ble/pal/MemorySecurityDb.h"
#include "ble/pal/SimpleEventQueue.h"
namespace ble {