From 5e965f8d2ac763fef35a4281655f5dd8df5f9895 Mon Sep 17 00:00:00 2001 From: Amisha Jain Date: Tue, 7 Jan 2025 17:17:13 +0530 Subject: [PATCH] obexctl: Implement support for message listing format version 1.1 for MCE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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(+) 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[]) -- 2.47.3