Merge pull request #6494 from donatieng/securitydb_fix_casing

[BLE] Fixed inconsistent casing issue for SecurityDb
pull/6518/head
Jimmy Brisson 2018-03-29 12:00:36 -05:00 committed by GitHub
commit 2429d5e042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {