From 72dddc80def4f6de4c7d30687b0c0b379b79c162 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 7 May 2025 11:36:39 -0400 Subject: [PATCH] btio: Fix not being able to set security level 4 This adds support for BT_IO_SEC_FIPS which shall represent the security level 4. --- btio/btio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btio/btio.c b/btio/btio.c index 14f2b700e..b8afe0580 100644 --- a/btio/btio.c +++ b/btio/btio.c @@ -455,7 +455,7 @@ static gboolean set_sec_level(int sock, BtIOType type, int level, GError **err) struct bt_security sec; int ret; - if (level < BT_SECURITY_LOW || level > BT_SECURITY_HIGH) { + if (level < BT_SECURITY_LOW || level > BT_SECURITY_FIPS) { g_set_error(err, BT_IO_ERROR, EINVAL, "Valid security level range is %d-%d", BT_SECURITY_LOW, BT_SECURITY_HIGH); -- 2.47.3