Bluetooth: doc: Fix displacement of security levels description
Improves placement of security levels value description in Bluetooth API documentation by moving to separate line proper comment describing the value meaning. Change-Id: Ia2f58282bb664bf96cda888412900024c6ddf4b0 Signed-off-by: Arkadiusz Lichwa <arkadiusz.lichwa@tieto.com>
This commit is contained in:
parent
37bd570b9b
commit
14de650b13
1 changed files with 8 additions and 6 deletions
|
@ -239,12 +239,14 @@ struct bt_conn *bt_conn_create_slave_le(const bt_addr_le_t *peer,
|
|||
|
||||
/** Security level. */
|
||||
typedef enum __packed {
|
||||
BT_SECURITY_LOW, /** No encryption and no authentication. */
|
||||
BT_SECURITY_MEDIUM, /** encryption and no authentication (no MITM). */
|
||||
BT_SECURITY_HIGH, /** encryption and authentication (MITM). */
|
||||
BT_SECURITY_FIPS, /** Authenticated LE Secure Connections and
|
||||
* encryption.
|
||||
*/
|
||||
/** No encryption and no authentication. */
|
||||
BT_SECURITY_LOW,
|
||||
/** Encryption and no authentication (no MITM). */
|
||||
BT_SECURITY_MEDIUM,
|
||||
/** Encryption and authentication (MITM). */
|
||||
BT_SECURITY_HIGH,
|
||||
/** Authenticated Secure Connections */
|
||||
BT_SECURITY_FIPS,
|
||||
} bt_security_t;
|
||||
|
||||
/** @brief Set security level for a connection.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue