changed long to int (64 bit system's compatibilty)
[lcr.git] / chan_lcr.h
index 75ad693..c24a666 100644 (file)
@@ -14,7 +14,7 @@ struct bchannel;
 struct chan_call {
        struct chan_call        *next;  /* link to next call instance */
        int                     state;  /* current call state CHAN_LCR_STATE */
-       unsigned long           ref;    /* callref for this channel */
+       unsigned int            ref;    /* callref for this channel */
        void                    *ast;   /* current asterisk channel */
        int                     pbx_started;
                                        /* indicates if pbx que is available */
@@ -39,6 +39,25 @@ 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 */
+       char                    display[128];
+                                       /* display for setup */
+       int                     dtmf;
+                                       /* shall dtmf be enabled */
+       int                     no_dtmf;
+                                       /* dtmf disabled by option */
+       char                    pipeline[256];
+                                       /* echo cancel pipeline by option */
+       int                     tx_gain, rx_gain;
+                                       /* gain by option */
+       unsigned char           bf_key[56];
+       int                     bf_len; /* blowfish crypt key */
+       int                     transparent, hdlc;
+                                       /* flags for bchannel mode */
+               
 };
 
 enum {
@@ -93,7 +112,8 @@ enum {
 };
 
 
-#define CERROR(call, ast, arg...) chan_lcr_log(__LOG_ERROR, __FILE__, __LINE__, call, ast, ##arg)
-#define CDEBUG(call, ast, arg...) chan_lcr_log(__LOG_DEBUG, __FILE__, __LINE__, call, ast, ##arg)
-void chan_lcr_log(int type, const char *file, int line, struct chan_call *call, struct ast_channel *ast, const char *fmt, ...);
-
+#define CERROR(call, ast, arg...) chan_lcr_log(__LOG_ERROR, __FILE__, __LINE__,  __FUNCTION__, call, ast, ##arg)
+#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);