diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index a8b14e4..4cc7ba4 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
bool client_enable_ssp;
uint8_t io_cap;
uint8_t client_io_cap;
+ uint8_t client_auth_req;
bool reject_ssp;
bool client_reject_ssp;
};
.expect_hci_func = client_bdaddr_param_func,
.io_cap = 0x01, /* DisplayYesNo */
.client_io_cap = 0x01, /* DisplayYesNo */
+ .client_auth_req = 0x01, /* No Bonding - MITM */
.reject_ssp = true,
};
if (test->client_io_cap)
bthost_set_io_capability(bthost, test->client_io_cap);
+ if (test->client_auth_req)
+ bthost_set_auth_req(bthost, test->client_auth_req);
+
if (test->client_reject_ssp)
bthost_set_reject_user_confirm(bthost, true);