diff --git a/include/bluetooth/conn.h b/include/bluetooth/conn.h index 838aa519293..dfa762ed1e5 100644 --- a/include/bluetooth/conn.h +++ b/include/bluetooth/conn.h @@ -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.