1#ifndef BLUETOE_SM_PAIRING_STATUS_HPP 
    2#define BLUETOE_SM_PAIRING_STATUS_HPP 
   11    enum class device_pairing_status {
 
   15        authenticated_key_with_secure_connection
 
the basic security attributes of a connection
Definition: pairing_status.hpp:24
 
device_pairing_status pairing_status
method that was used to exchange the long term key that is used in the connection
Definition: pairing_status.hpp:33
 
constexpr connection_security_attributes()
default: not encrypted, no key
Definition: pairing_status.hpp:38
 
bool is_encrypted
true, if the connection is currently encrypted
Definition: pairing_status.hpp:28
 
constexpr connection_security_attributes(bool encrypted, device_pairing_status status)
c'tor to initialize both members
Definition: pairing_status.hpp:47