mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
Add missing const in NimBLEConnInfo.
This commit is contained in:
parent
c156b0202c
commit
63a3301696
1 changed files with 1 additions and 1 deletions
|
@ -53,6 +53,6 @@ public:
|
|||
bool isAuthenticated() const { return (m_desc.sec_state.authenticated == 1); }
|
||||
|
||||
/** @brief Gets the key size used to encrypt the connection */
|
||||
uint8_t getSecKeySize() { return m_desc.sec_state.key_size; }
|
||||
uint8_t getSecKeySize() const { return m_desc.sec_state.key_size; }
|
||||
};
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue