[Asterisk-code-review] res_fax: add channel name to CLI 'fax show session' (...asterisk[master])
Friendly Automation
asteriskteam at digium.com
Mon Jun 3 09:29:13 CDT 2019
Friendly Automation has submitted this change and it was merged. ( https://gerrit.asterisk.org/c/asterisk/+/11421 )
Change subject: res_fax: add channel name to CLI 'fax show session'
......................................................................
res_fax: add channel name to CLI 'fax show session'
This patch adds a channel name to output of CLI 'fax show session'
and also expands the channel name field up to 30 characters on
CLI 'fax show sessions'
Change-Id: Id059c43ff41811f5e76712b83fb63b8f246da953
---
M res/res_fax.c
1 file changed, 3 insertions(+), 2 deletions(-)
Approvals:
Benjamin Keith Ford: Looks good to me, but someone else must approve
Joshua Colp: Looks good to me, but someone else must approve
George Joseph: Looks good to me, approved
Friendly Automation: Approved for Submit
diff --git a/res/res_fax.c b/res/res_fax.c
index 7338507..bf559fb 100644
--- a/res/res_fax.c
+++ b/res/res_fax.c
@@ -4068,6 +4068,7 @@
ast_cli(a->fd, "\nFAX Session Details:\n--------------------\n\n");
s = ao2_find(faxregistry.container, &tmp, OBJ_POINTER);
if (s) {
+ ast_cli(a->fd, "%-22s : %s\n", "channel", s->channame);
s->tech->cli_show_session(s, a->fd);
ao2_ref(s, -1);
}
@@ -4225,7 +4226,7 @@
}
ast_cli(a->fd, "\nCurrent FAX Sessions:\n\n");
- ast_cli(a->fd, "%-20.20s %-10.10s %-10.10s %-5.5s %-10.10s %-15.15s %-30.30s\n",
+ ast_cli(a->fd, "%-30.30s %-10.10s %-10.10s %-5.5s %-10.10s %-15.15s %-30.30s\n",
"Channel", "Tech", "FAXID", "Type", "Operation", "State", "File(s)");
i = ao2_iterator_init(faxregistry.container, 0);
while ((s = ao2_iterator_next(&i))) {
@@ -4233,7 +4234,7 @@
filenames = generate_filenames_string(s->details, "", ", ");
- ast_cli(a->fd, "%-20.20s %-10.10s %-10u %-5.5s %-10.10s %-15.15s %-30s\n",
+ ast_cli(a->fd, "%-30.30s %-10.10s %-10u %-5.5s %-10.10s %-15.15s %-30s\n",
s->channame, s->tech->type, s->id,
fax_session_type(s),
ast_fax_session_operation_str(s),
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/11421
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Id059c43ff41811f5e76712b83fb63b8f246da953
Gerrit-Change-Number: 11421
Gerrit-PatchSet: 1
Gerrit-Owner: Alexei Gradinari <alex2grad at gmail.com>
Gerrit-Reviewer: Benjamin Keith Ford <bford at digium.com>
Gerrit-Reviewer: Friendly Automation
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20190603/4e56b769/attachment-0001.html>
More information about the asterisk-code-review
mailing list