Message ID | 20250107114713.3594001-1-quic_amisjain@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5e965f8d2ac763fef35a4281655f5dd8df5f9895 |
Headers | show |
Series | [v1] obexctl: Implement support for message listing format version 1.1 for MCE | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
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=922893 ---Test result--- Test Summary: CheckPatch PENDING 0.17 seconds GitLint PENDING 0.20 seconds BuildEll PASS 20.83 seconds BluezMake PASS 1532.06 seconds MakeCheck PASS 13.07 seconds MakeDistcheck PASS 159.47 seconds CheckValgrind PASS 218.95 seconds CheckSmatch PASS 277.55 seconds bluezmakeextell PASS 99.77 seconds IncrementalBuild PENDING 0.26 seconds ScanBuild PASS 845.13 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 7 Jan 2025 17:17:13 +0530 you wrote: > This change is corresponding to obexd changes done for implementing > ‘Messages-Listing Format Version 1.1’ . > This change will emit the newly added properties values in obexctl > which are sent by server. > > --- > tools/obexctl.c | 5 +++++ > 1 file changed, 5 insertions(+) Here is the summary with links: - [v1] obexctl: Implement support for message listing format version 1.1 for MCE https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=5e965f8d2ac7 You are awesome, thank you!
diff --git a/tools/obexctl.c b/tools/obexctl.c index 0965762ce..463d5b0ef 100644 --- a/tools/obexctl.c +++ b/tools/obexctl.c @@ -477,6 +477,11 @@ static void message_info(GDBusProxy *proxy, int argc, char *argv[]) print_property(proxy, "Deleted"); print_property(proxy, "Sent"); print_property(proxy, "Protected"); + print_property(proxy, "DeliveryStatus"); + print_property(proxy, "ConversationId"); + print_property(proxy, "ConversationName"); + print_property(proxy, "Direction"); + print_property(proxy, "AttachmentMimeTypes"); } static void cmd_info(int argc, char *argv[])