summaryrefslogtreecommitdiff
path: root/channels/h323/chan_h323.h
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2004-10-22 19:04:02 +0000
committerJeremy McNamara <jj@nufone.net>2004-10-22 19:04:02 +0000
commit9f0d70a9e689941026b187f566c4ec6bdb7f2a7e (patch)
tree3d8315d54efbcb86d7feec354759523e2037f501 /channels/h323/chan_h323.h
parent031a65ee736de937dc1c60af5a414b49255d75ed (diff)
re-implement callerid, still might not be right. Remove channel limits, in favor to app_groupcount. A lot more code cleanup. Please test and report as I am sure I broke something
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4049 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/h323/chan_h323.h')
-rwxr-xr-xchannels/h323/chan_h323.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/channels/h323/chan_h323.h b/channels/h323/chan_h323.h
index c53ee0c8c..c6acb6fd7 100755
--- a/channels/h323/chan_h323.h
+++ b/channels/h323/chan_h323.h
@@ -41,8 +41,6 @@ struct oh323_user {
int noFastStart;
int noH245Tunneling;
int noSilenceSuppression;
- int inUse;
- int incominglimit;
int bridge;
int nat;
int dtmfmode;
@@ -61,8 +59,6 @@ struct oh323_peer {
int noFastStart;
int noH245Tunneling;
int noSilenceSuppression;
- int inUse;
- int outgoinglimit;
int bridge;
int nat;
int dtmfmode;
@@ -86,8 +82,8 @@ struct oh323_alias {
/** call_option struct holds various bits
of information for each call */
typedef struct call_options {
- char *callerid;
- char *callername;
+ char *cid_num;
+ char *cid_name;
int noFastStart;
int noH245Tunneling;
int noSilenceSuppression;