aboutsummaryrefslogtreecommitdiffstats
path: root/channels/sig_analog.h
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-25 19:54:12 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-25 19:54:12 +0000
commitbf5864bc4ba013ba2a2522a4b617aebbaffb7bd4 (patch)
tree5f92b276b38f12ebb2bd11e908e891dc60a44c6e /channels/sig_analog.h
parentb990032a9ce1b0a4931ac64b98e42a6b0d956db0 (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: http://svn.digium.com/svn/asterisk/trunk@203304 f38db490-d61c-443f-a65b-d21fe96a405b
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
};