summaryrefslogtreecommitdiffstats
path: root/chan_lcr.h
diff options
context:
space:
mode:
authorSuper User2008-06-06 15:18:59 +0200
committerSuper User2008-06-06 15:18:59 +0200
commitcbc232643c7b26d64204ba7f6151007e9c0267e4 (patch)
treede9d04deac87922f6e8a6a6e0f1e4654d12a0706 /chan_lcr.h
parentfixed bad bug in opening bchannel (diff)
downloadlcr-cbc232643c7b26d64204ba7f6151007e9c0267e4.tar.gz
lcr-cbc232643c7b26d64204ba7f6151007e9c0267e4.tar.xz
lcr-cbc232643c7b26d64204ba7f6151007e9c0267e4.zip
work on chan_lcr: bridging works, interface selection possible
modified: Makefile modified: apppbx.cpp modified: apppbx.h modified: bchannel.c modified: bchannel.h modified: chan_lcr.c modified: chan_lcr.h modified: dss1.cpp modified: genext.c modified: joinremote.cpp modified: joinremote.h modified: mISDN.cpp modified: mISDN.h modified: macro.h modified: main.c modified: message.h modified: options.c modified: options.h modified: socket_server.c
Diffstat (limited to 'chan_lcr.h')
-rw-r--r--chan_lcr.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/chan_lcr.h b/chan_lcr.h
index 8265c26..29d9e7d 100644
--- a/chan_lcr.h
+++ b/chan_lcr.h
@@ -39,6 +39,12 @@ struct chan_call {
/* read buffer for frame */
struct ast_frame read_fr;
/* frame for read */
+ char interface[32];
+ /* LCR interface name for setup */
+ char dialstring[64];
+ /* cached dial string for setup */
+ int dtmf;
+ /* shall dtmf be enabled */
};
enum {
@@ -97,3 +103,4 @@ enum {
#define CDEBUG(call, ast, arg...) chan_lcr_log(__LOG_NOTICE, __FILE__, __LINE__, __FUNCTION__, call, ast, ##arg)
void chan_lcr_log(int type, const char *file, int line, const char *function, struct chan_call *call, struct ast_channel *ast, const char *fmt, ...);
extern unsigned char flip_bits[256];
+void lcr_in_dtmf(struct chan_call *call, int val);