summaryrefslogtreecommitdiff
path: root/channels/misdn/isdn_lib.h
diff options
context:
space:
mode:
authorChristian Richter <christian.richter@beronet.com>2006-02-02 21:15:34 +0000
committerChristian Richter <christian.richter@beronet.com>2006-02-02 21:15:34 +0000
commit7133d1b00608048b578eced586549c32ec10ecb8 (patch)
tree3774bcd4595d5b5afafd2b65e86f3ffd5b1fe137 /channels/misdn/isdn_lib.h
parent7bed7d9048ce68cb0a6244c63a4873a0a7996d84 (diff)
* removed unnecessary struct elements and functions
* fixed "RETRIEVE does not work" bug * fixed some NT Mode bugs * removed some // comments * added configureable jitterbuffer * removed own tone-generator, and use asterisks instead, to support asterisks indications * added more support for hw-bridging, we bridge now every possible call * fixed some hdlc mode issues, with a patch for chan_zap we can make data calls between chan_zap and chan_misdn now * completely reworked the config engine, works like a charm now * fixed SetCallerPres - bug * added Progress and Proceeding passing * optimized Ringing Indication handling * added full ast_send_text support (you can setup nice menus with the dialplan now) * added support to read /etc/misdn-init.conf to clarify the NT+PTP Problem * we compile now channels/misdn if mISDNuser is installed systemwide git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9114 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/misdn/isdn_lib.h')
-rw-r--r--channels/misdn/isdn_lib.h29
1 files changed, 13 insertions, 16 deletions
diff --git a/channels/misdn/isdn_lib.h b/channels/misdn/isdn_lib.h
index a27e7c592..77804241d 100644
--- a/channels/misdn/isdn_lib.h
+++ b/channels/misdn/isdn_lib.h
@@ -31,15 +31,6 @@ enum bc_state_e {
STATE_HOLD_ACKNOWLEDGE
};
-
-enum tone_e {
- TONE_NONE=0,
- TONE_DIAL,
- TONE_ALERTING,
- TONE_BUSY,
- TONE_FILE
-};
-
enum misdn_err_e {
ENOCHAN=1
};
@@ -66,7 +57,9 @@ enum event_response_e {
enum event_e {
EVENT_NOTHING,
+ EVENT_TONE_GENERATE,
EVENT_BCHAN_DATA,
+ EVENT_BCHAN_ACTIVATED,
EVENT_CLEANUP,
EVENT_PROCEEDING,
EVENT_PROGRESS,
@@ -173,6 +166,8 @@ struct misdn_bchannel {
/* int b_addr; */
int layer_id;
+ void *ack_hdlc;
+
int layer;
@@ -203,6 +198,9 @@ struct misdn_bchannel {
int dtmf;
int send_dtmf;
+ /* get setup ack */
+ int need_more_infos;
+
/* wether we should use jollys dsp or not */
int nodsp;
@@ -242,9 +240,8 @@ struct misdn_bchannel {
int active;
int upset;
- enum tone_e tone;
+ int generate_tone;
int tone_cnt;
- int tone_cnt2;
enum bc_state_e state;
@@ -262,7 +259,7 @@ struct misdn_bchannel {
int user1;
int urate;
- int async;
+ int hdlc;
/* V110 */
unsigned char display[84];
@@ -304,7 +301,6 @@ struct misdn_bchannel {
enum event_response_e (*cb_event) (enum event_e event, struct misdn_bchannel *bc, void *user_data);
void (*cb_log) (int level, int port, char *tmpl, ...);
-int (*cb_clearl3_true)(void);
int (*cb_jb_empty)(struct misdn_bchannel *bc, char *buffer, int len);
struct misdn_lib_iface {
@@ -312,7 +308,6 @@ struct misdn_lib_iface {
enum event_response_e (*cb_event)(enum event_e event, struct misdn_bchannel *bc, void *user_data);
void (*cb_log)(int level, int port, char *tmpl, ...);
int (*cb_jb_empty)(struct misdn_bchannel *bc, char *buffer, int len);
- int (*cb_clearl3_true)(void);
};
/***** USER IFACE **********/
@@ -334,8 +329,6 @@ void manager_bchannel_deactivate(struct misdn_bchannel * bc);
int misdn_lib_tx2misdn_frm(struct misdn_bchannel *bc, void *data, int len);
-void manager_send_tone (struct misdn_bchannel *bc, enum tone_e tone);
-
void manager_ph_control(struct misdn_bchannel *bc, int c1, int c2);
@@ -375,6 +368,10 @@ void *misdn_init_ibuffer(int len);
/** Ibuf interface End **/
+void misdn_lib_tone_generator_start(struct misdn_bchannel *bc);
+void misdn_lib_tone_generator_stop(struct misdn_bchannel *bc);
+
+
void misdn_lib_setup_bc(struct misdn_bchannel *bc);
void misdn_lib_bridge( struct misdn_bchannel * bc1, struct misdn_bchannel *bc2);