lcr work (soon done :)
[lcr.git] / chan_lcr.h
index 17406ce..2388800 100644 (file)
@@ -15,8 +15,10 @@ 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 */
-       struct ast_channel      *ast;   /* current asterisk channel */
-       struct bchannel         *channel;
+       void                    *ast;   /* current asterisk channel */
+       int                     pbx_started;
+                                       /* indicates if pbx que is available */
+       struct bchannel         *bchannel;
                                        /* reference to bchannel, if set */
        int                     cause, location;
                                        /* store cause from lcr */
@@ -24,6 +26,12 @@ struct chan_call {
                                        /* queue dialing prior setup ack */
        struct connect_info     connectinfo;
                                        /* store connectinfo form lcr */
+       int                     bridge_id;
+                                       /* current ID or 0 */
+       struct chan_call        *bridge_call;
+                                       /* remote instance or NULL */
+       int                     pipe[2];
+                                       /* pipe for receive data */
 };
 
 enum {
@@ -78,3 +86,7 @@ enum {
 };
 
 
+#define CERROR(call, ast, arg...) chan_lcr_log(LOG_ERROR, call, ast, ##arg)
+#define CDEBUG(call, ast, arg...) chan_lcr_log(LOG_DEBUG, call, ast, ##arg)
+void chan_lcr_log(int type, struct chan_call *call, struct ast_channel *ast, const char *fmt, ...);
+