summaryrefslogtreecommitdiff
path: root/channels/sig_analog.h
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2009-06-25 19:54:12 +0000
committerJeff Peeler <jpeeler@digium.com>2009-06-25 19:54:12 +0000
commit5c7da226e48c1da48bd5e4756645d342955b2d16 (patch)
tree5f92b276b38f12ebb2bd11e908e891dc60a44c6e /channels/sig_analog.h
parentafa8db54a055b788266b88290eb412f4ee5c3a2b (diff)
New signaling module to handle PRI/BRI operations in chan_dahdi
This merge splits the PRI/BRI signaling logic out of chan_dahdi.c into sig_pri.c. Functionality in theory should not change (mostly). A few trivial changes were made in sig_analog with verbose messages and commenting. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@203304 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sig_analog.h')
-rw-r--r--channels/sig_analog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/channels/sig_analog.h b/channels/sig_analog.h
index 91e154353..24c4d6c8f 100644
--- a/channels/sig_analog.h
+++ b/channels/sig_analog.h
@@ -248,12 +248,12 @@ struct analog_pvt {
/* XXX: All variables after this are internal */
unsigned int callwaiting:1;
unsigned int dialednone:1;
- unsigned int dialing:1;
+ unsigned int dialing:1; /*!< TRUE if in the process of dialing digits or sending something */
unsigned int dnd:1;
unsigned int echobreak:1;
unsigned int hidecallerid:1;
unsigned int outgoing:1;
- unsigned int pulsedial:1; /*!< whether a pulse dial phone is detected */
+ unsigned int pulsedial:1; /*!< TRUE if a pulsed digit was detected. (Pulse dial phone detected) */
char callwait_num[AST_MAX_EXTENSION];
char callwait_name[AST_MAX_EXTENSION];
@@ -277,13 +277,13 @@ struct analog_pvt {
void *ss_astchan;
/* All variables after this are definitely going to be audited */
- unsigned int inalarm:1; //
- unsigned int unknown_alarm:1;//
+ unsigned int inalarm:1;
+ unsigned int unknown_alarm:1;
int callwaitcas;
#if 0
- int ringt; //
+ int ringt;
int ringt_base;
#endif
};