* [PATCH BlueZ v2] client: Avoid scan prompt when discovery is already active
@ 2026-08-08 20:05 z4pdyy
2026-08-08 21:24 ` [BlueZ,v2] " bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: z4pdyy @ 2026-08-08 20:05 UTC (permalink / raw)
To: linux-bluetooth
From: z4pdy <305461556+z4pdy@users.noreply.github.com>
Check the adapter's Discovering property before prompting the user
to start scanning. This avoids prompting to scan when discovery is
already in progress, which previously resulted
in an org.bluez.Error.InProgress error.
Changes in v2:
- Move variable declarations to the beginning of cmd_connect()
to fix the ISO C90 build failure.
---
client/main.c | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/client/main.c b/client/main.c
index b5cad8afc..069e20485 100644
--- a/client/main.c
+++ b/client/main.c
@@ -2290,6 +2290,8 @@ static void cmd_connect(int argc, char *argv[])
const char *method = "Connect";
char profile[128] = "";
GDBusProxy *proxy;
+ dbus_bool_t discovering;
+ DBusMessageIter iter;
if (check_default_ctrl() == FALSE)
return bt_shell_noninteractive_quit(EXIT_FAILURE);
@@ -2297,8 +2299,18 @@ static void cmd_connect(int argc, char *argv[])
proxy = find_proxy_by_address(default_ctrl->devices, argv[1]);
if (!proxy) {
bt_shell_printf("Device %s not available\n", argv[1]);
- bt_shell_prompt_input(argv[1], "Scan and connect (yes,no):",
- prompt_scan_connect, strdup(argv[1]));
+
+ if (g_dbus_proxy_get_property(default_ctrl->proxy,
+ "Discovering", &iter)) {
+ dbus_message_iter_get_basic(&iter, &discovering);
+
+ if (!discovering)
+ bt_shell_prompt_input(argv[1],
+ "Scan and connect (yes,no):",
+ prompt_scan_connect,
+ strdup(argv[1]));
+
+ }
return;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [BlueZ,v2] client: Avoid scan prompt when discovery is already active
2026-08-08 20:05 [PATCH BlueZ v2] client: Avoid scan prompt when discovery is already active z4pdyy
@ 2026-08-08 21:24 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2026-08-08 21:24 UTC (permalink / raw)
To: linux-bluetooth, z4pdyy
[-- Attachment #1: Type: text/plain, Size: 824 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=1142780
---Test result---
Test Summary:
CheckPatch PASS 0.39 seconds
GitLint PASS 0.26 seconds
BuildEll PASS 18.13 seconds
BluezMake PASS 657.32 seconds
CheckSmatch PASS 271.96 seconds
bluezmakeextell PASS 94.34 seconds
IncrementalBuild PASS 651.69 seconds
ScanBuild PASS 881.35 seconds
https://github.com/bluez/bluez/pull/2392
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-08 21:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-08 20:05 [PATCH BlueZ v2] client: Avoid scan prompt when discovery is already active z4pdyy
2026-08-08 21:24 ` [BlueZ,v2] " bluez.test.bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox