aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-20 14:33:34 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-20 14:33:34 +0000
commit321b9a2a98ec95e5d97f96c248200d7e45c1ecfd (patch)
tree8d1f3b6d9895951cad02fd599e0967fd23f64b41 /channels
parent2ba8d2aa3b24cba89982048f69c6fead1a0f6c1a (diff)
Show TDD status in "zap show channels"
Inspired by work at Omnitor in Sweden git-svn-id: http://svn.digium.com/svn/asterisk/trunk@70310 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index b007b9f84..81c1a8f9c 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -10963,6 +10963,7 @@ static int zap_show_channel(int fd, int argc, char **argv)
ast_cli(fd, "Propagated Conference: %d\n", tmp->propconfno);
ast_cli(fd, "Real in conference: %d\n", tmp->inconference);
ast_cli(fd, "DSP: %s\n", tmp->dsp ? "yes" : "no");
+ ast_cli(fd, "TDD: %s\n", tmp->tdd ? "yes" : "no");
ast_cli(fd, "Relax DTMF: %s\n", tmp->dtmfrelax ? "yes" : "no");
ast_cli(fd, "Dialing/CallwaitCAS: %d/%d\n", tmp->dialing, tmp->callwaitcas);
ast_cli(fd, "Default law: %s\n", tmp->law == ZT_LAW_MULAW ? "ulaw" : tmp->law == ZT_LAW_ALAW ? "alaw" : "unknown");