diff mbox series

[v1] obexctl: Implement support for message listing format version 1.1 for MCE

Message ID 20250107114713.3594001-1-quic_amisjain@quicinc.com
State New
Headers show
Series [v1] obexctl: Implement support for message listing format version 1.1 for MCE | expand

Commit Message

Amisha Jain Jan. 7, 2025, 11:47 a.m. UTC
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(+)

Comments

patchwork-bot+bluetooth@kernel.org Jan. 9, 2025, 4:17 p.m. UTC | #1
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 mbox series

Patch

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[])