diff options
author | Sven Gothel <[email protected]> | 2023-10-25 12:02:26 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-10-25 12:02:26 +0200 |
commit | cb387988f3e01e16f58325ba843d539e4425c021 (patch) | |
tree | 448601984a88b10f3fae23415116137f6bfa2b87 /trial/direct_bt | |
parent | 2765a530e1a0bf77ec286c907ad613c0a4e1ca55 (diff) |
GATT Server Auth: Prepare dbt_peripheral00 (C++ and java), add 'SMPIOCapability adapter_sec_io_cap' commandline param to enable IO for auth
Currently I limit my tests for ENC + AUTH to:
- BTSecurityLevel: ENC_AUTH (3) and ENC_AUTH_FIPS(4)
- SMPIOCapability.DISPLAY_ONLY (0) to have a PASSKEY being display by the user application.
Current unit tests cover the ENC_ONLY(2) with IO NONE (0xff) only
and shall be enhanced for these enc+auth cases as well.
Diffstat (limited to 'trial/direct_bt')
-rw-r--r-- | trial/direct_bt/dbt_server01.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trial/direct_bt/dbt_server01.hpp b/trial/direct_bt/dbt_server01.hpp index ddd0f905..31027cd6 100644 --- a/trial/direct_bt/dbt_server01.hpp +++ b/trial/direct_bt/dbt_server01.hpp @@ -107,7 +107,7 @@ class DBTServer01 : public DBTServerTest { std::make_shared<DBGattChar>( std::make_unique<const jau::uuid16_t>(GattCharacteristicType::MODEL_NUMBER_STRING) /* value_type_ */, BTGattChar::PropertyBitVal::Read, jau::darray<DBGattDescRef>() /* intentionally empty */, - make_poctets("2.4.0-pre") /* value */ ), + make_poctets("3.2.0-pre") /* value */ ), std::make_shared<DBGattChar>( std::make_unique<const jau::uuid16_t>(GattCharacteristicType::SERIAL_NUMBER_STRING) /* value_type_ */, BTGattChar::PropertyBitVal::Read, jau::darray<DBGattDescRef>() /* intentionally empty */, |