work on chan_lcr:
[lcr.git] / chan_lcr.c
index 493fd76..382025b 100644 (file)
 
 /*
 
-How does it work:
+Registering to LCR:
 
-To connect, open a socket and send a MESSAGE_HELLO to admin socket with
+To connect, open an LCR socket and send a MESSAGE_HELLO to socket with
 the application name. This name is unique an can be used for routing calls.
+Now the channel driver is linked to LCR and can receive and make calls.
 
-To make a call, send a MESSAGE_NEWREF and a new reference is received.
-When receiving a call, a new reference is received.
-The reference is received with MESSAGE_NEWREF.
 
-Make a MESSAGE_SETUP or receive a MESSAGE_SETUP with the reference.
+Call is initiated by LCR:
 
-To release call and reference, send or receive MESSAGE_RELEASE.
-From that point on, the ref is not valid, so no other message may be sent
-with that reference.
+If a call is received from LCR, a MESSAGE_NEWREF is received first.
+A new chan_call instance is created. The call reference (ref) is given by
+MESSAGE_NEWREF. The state is CHAN_LCR_STATE_IN_PREPARE.
+After receiving MESSAGE_SETUP from LCR, the ast_channel instance is created
+using ast_channel_alloc(1).  The setup information is given to asterisk.
+The new Asterisk instance pointer (ast) is stored to chan_call structure.
+The state changes to CHAN_LCR_STATE_IN_SETUP.
+
+
+Call is initiated by Asterisk:
+
+If a call is reveiced from Asterisk, a new chan_call instance is created.
+The new Asterisk instance pointer (ast) is stored to chan_call structure.
+A MESSASGE_NEWREF is sent to LCR requesting a new call reference (ref).
+The current call ref is set to 0, the state is CHAN_LCR_STATE_OUT_PREPARE.
+Further dialing information is queued.
+After the new callref is received by special MESSAGE_NEWREF reply, new ref
+is stored in the chan_call structure. 
+The setup information is sent to LCR using MESSAGE_SETUP.
+The state changes to CHAN_LCR_STATE_OUT_SETUP.
+
+
+Call is in process:
+
+During call process, messages are received and sent.
+The state changes accordingly.
+Any message is allowed to be sent to LCR at any time except MESSAGE_RELEASE.
+If a MESSAGE_OVERLAP is received, further dialing is required.
+Queued dialing information, if any, is sent to LCR using MESSAGE_DIALING.
+In this case, the state changes to CHAN_LCR_STATE_OUT_DIALING.
+
+
+Call is released by LCR:
+
+A MESSAGE_RELEASE is received with the call reference (ref) to be released.
+The current ref is set to 0, to indicate released reference.
+The state changes to CHAN_LCR_STATE_RELEASE.
+ast_queue_hangup() is called, if asterisk instance (ast) exists, if not,
+the chan_call instance is destroyed.
+After lcr_hangup() is called-back by Asterisk, the chan_call instance
+is destroyed, because the current ref is set to 0 and the state equals
+CHAN_LCR_STATE_RELEASE.
+If the ref is 0 and the state is not CHAN_LCR_STATE_RELEASE, see the proceedure
+"Call is released by Asterisk".
+
+
+Call is released by Asterisk:
+
+lcr_hangup() is called-back by Asterisk. If the call reference (ref) is set,
+a MESSAGE_RELEASE is sent to LCR and the chan_call instance is destroyed.
+If the ref is 0 and the state is not CHAN_LCR_STATE_RELEASE, the new state is
+set to CHAN_LCR_STATE_RELEASE.
+Later, if the MESSAGE_NEWREF reply is received, a MESSAGE_RELEASE is sent to
+LCR and the chan_call instance is destroyed.
+If the ref is 0 and the state is CHAN_LCR_STATE_RELEASE, see the proceedure
+"Call is released by LCR".
 
 */
 
+locking asterisk process and handler
+reconnect after socket closed, release all calls.
+debug of call handling
+denke an alle info-elements in jeder message (from asterisk & from lcr)
+
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -40,6 +97,10 @@ with that reference.
 #include <sys/ioctl.h>
 #include <sys/socket.h>
 #include <sys/un.h>
+
+#include <pthread.h>
+#include <semaphore.h>
+
 #include "extension.h"
 #include "message.h"
 #include "lcrsocket.h"
@@ -47,6 +108,34 @@ with that reference.
 #include "bchannel.h"
 #include "chan_lcr.h"
 
+
+
+#include <asterisk/module.h>
+#include <asterisk/channel.h>
+#include <asterisk/config.h>
+#include <asterisk/logger.h>
+#include <asterisk/pbx.h>
+#include <asterisk/options.h>
+#include <asterisk/io.h>
+#include <asterisk/frame.h>
+#include <asterisk/translate.h>
+#include <asterisk/cli.h>
+#include <asterisk/musiconhold.h>
+#include <asterisk/dsp.h>
+#include <asterisk/translate.h>
+#include <asterisk/file.h>
+#include <asterisk/callerid.h>
+#include <asterisk/indications.h>
+#include <asterisk/app.h>
+#include <asterisk/features.h>
+#include <asterisk/sched.h>
+
+CHAN_LCR_STATE // state description structure
+
+int lcr_debug=1;
+int mISDN_created=1;
+
+
 int lcr_sock = -1;
 
 struct admin_list {
@@ -93,6 +182,8 @@ struct chan_call *alloc_call(void)
                callp = &((*callp)->next);
 
        *callp = (struct chan_call *)malloc(sizeof(struct chan_call));
+       if (*callp)
+               memset(*callp, 0, sizeof(struct chan_call));
        return(*callp);
 }
 
@@ -167,6 +258,145 @@ int send_message(int message_type, unsigned long ref, union parameter *param)
 }
 
 /*
+ * incoming setup from LCR
+ */
+static void lcr_in_setup(struct chan_call *call, int message_type, union parameter *param)
+{
+       struct ast_channel *ast;
+       union parameter newparam;
+
+       /* create asterisk channel instrance */
+       ast = ast_channel_alloc(1);
+       if (!ast)
+       {
+               /* release */
+               memset(&newparam, 0, sizeof(union parameter));
+               newparam.disconnectinfo.cause = CAUSE_RESSOURCEUNAVAIL;
+               newparam.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
+               send_message(MESSAGE_RELEASE, call->ref, &newparam);
+               /* remove call */
+               free_call(call);
+               return;
+       }
+       /* set ast pointer */
+       call->ast = ast;
+       
+       /* fill setup information */
+#warning todo: setup-info reinschreiben
+
+       /* send setup to asterisk */
+#warning todo: setup bei der asterisk triggern
+
+       /* change state */
+       call->state = CHAN_LCR_STATE_IN_SETUP;
+}
+
+/*
+ * incoming setup acknowledge from LCR
+ */
+static void lcr_in_overlap(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* send pending digits in dialque */
+       if (call->dialque)
+               send_dialing_to_lcr(call);
+       /* change to overlap state */
+       call->state = CHAN_LCR_STATE_OUT_DIALING;
+}
+
+/*
+ * incoming proceeding from LCR
+ */
+static void lcr_in_proceeding(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* change state */
+       call->state = CHAN_LCR_STATE_OUT_PROCEEDING;
+       /* send event to asterisk */
+       ast_queue_... todo
+}
+
+/*
+ * incoming alerting from LCR
+ */
+static void lcr_in_alerting(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* change state */
+       call->state = CHAN_LCR_STATE_OUT_ALERTING;
+       /* send event to asterisk */
+       ast_queue_... todo
+}
+
+/*
+ * incoming connect from LCR
+ */
+static void lcr_in_connect(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* change state */
+       call->state = CHAN_LCR_STATE_CONNECT;
+       /* copy connectinfo */
+       todo
+       /* send event to asterisk */
+       ast_queue_... todo
+}
+
+/*
+ * incoming disconnect from LCR
+ */
+static void lcr_in_disconnect(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* change state */
+       call->state = CHAN_LCR_STATE_IN_DISCONNECT;
+       /* copy disconnect info */
+       todo
+       /* send event to asterisk */
+       ast_queue_... todo
+}
+
+/*
+ * incoming setup acknowledge from LCR
+ */
+static void lcr_in_release(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* release ref */
+       call->ref = NULL;
+       /* change to release state */
+       call->state = CHAN_LCR_STATE_RELEASE;
+       /* copy release info */
+       todo
+       /* if we have an asterisk instance, send hangup, else we are done */
+       if (call->ast)
+       {
+               ast_queue_hangup(call->ast);
+       } else
+       {
+               free_call(call);
+       }
+       
+}
+
+/*
+ * incoming information from LCR
+ */
+static void lcr_in_information(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* copy digits */
+       todo and write them, maybe queue them for asterisk
+       /* send event to asterisk */
+       ast_queue_... todo
+}
+
+/*
+ * incoming information from LCR
+ */
+static void lcr_in_facility(struct chan_call *call, int message_type, union parameter *param)
+{
+       /* copy progress info */
+       todo and write them, maybe queue them for asterisk
+       /* send event to asterisk */
+       ast_queue_... todo
+       or maybe use bride info to forward facility.
+}
+
+/*
  * message received from LCR
  */
 int receive_message(int message_type, unsigned long ref, union parameter *param)
@@ -185,14 +415,14 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
                        case BCHANNEL_ASSIGN:
                        if ((bchannel = find_bchannel_handle(param->bchannel.handle)))
                        {
-                               fprintf(stderr, "error: bchannel handle %x already assigned.\n", param->bchannel.handle);
+                               fprintf(stderr, "error: bchannel handle %x already assigned.\n", (int)param->bchannel.handle);
                                return(-1);
                        }
                        /* create bchannel */
                        bchannel = alloc_bchannel(param->bchannel.handle);
                        if (!bchannel)
                        {
-                               fprintf(stderr, "error: alloc bchannel handle %x failed.\n", param->bchannel.handle);
+                               fprintf(stderr, "error: alloc bchannel handle %x failed.\n", (int)param->bchannel.handle);
                                return(-1);
                        }
 
@@ -218,7 +448,7 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
                                bchannel->ref = ref;
                                call->bchannel_handle = param->bchannel.handle;
 #warning hier muesen alle stati gesetzt werden falls sie vor dem b-kanal verfügbar waren
-                               bchannel_join(call->bridge_id);
+                               bchannel_join(bchannel, call->bridge_id);
                        }
                        if (bchannel_create(bchannel))
                                bchannel_activate(bchannel, 1);
@@ -232,8 +462,8 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
                        case BCHANNEL_REMOVE:
                        if (!(bchannel = find_bchannel_handle(param->bchannel.handle)))
                        {
-                               alle fprintf nach ast_log
-                               fprintf(stderr, "error: bchannel handle %x not assigned.\n", param->bchannel.handle);
+                               #warning alle fprintf nach ast_log
+                               fprintf(stderr, "error: bchannel handle %x not assigned.\n", (int)param->bchannel.handle);
                                return(-1);
                        }
                        /* unlink from call */
@@ -268,8 +498,13 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
                                fprintf(stderr, "illegal new ref %d received\n", ref);
                                return(-1);
                        }
+                       /* allocate new call instance */
                        call = alloc_call();
+                       /* new state */
+                       call->state = CHAN_LCR_STATE_IN_PREPARE;
+                       /* set ref */
                        call->ref = ref;
+                       /* wait for setup (or release from asterisk) */
                } else
                {
                        /* new ref, as requested from this remote application */
@@ -282,8 +517,22 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
                                send_message(MESSAGE_RELEASE, ref, &newparam);
                                return(0);
                        }
+                       /* store new ref */
                        call->ref = ref;
-#warning process call (send setup, if pending)
+                       /* send pending setup info */
+                       if (call->state == CHAN_LCR_STATE_OUT_PREPARE)
+                               send_setup_to_lcr(call);
+                       /* release if asterisk has signed off */
+                       else if (call->state == CHAN_LCR_STATE_RELEASE)
+                       {
+                               /* send release */
+                               newparam.disconnectinfo.cause = todo
+                               newparam.disconnectinfo.location = todo
+                               send_message(MESSAGE_RELEASE, ref, &newparam);
+                               /* free call */
+                               free_call(call);
+                               return(0);
+                       }
                }
                return(0);
        }
@@ -305,56 +554,55 @@ int receive_message(int message_type, unsigned long ref, union parameter *param)
        switch(message_type)
        {
                case MESSAGE_SETUP:
-todo
+               lcr_in_setup(call, message_type, param);
                break;
 
                case MESSAGE_OVERLAP:
-todo
+               lcr_in_overlap(call, message_type, param);
                break;
 
                case MESSAGE_PROCEEDING:
-todo
+               lcr_in_proceeding(call, message_type, param);
                break;
 
                case MESSAGE_ALERTING:
-todo
+               lcr_in_alerting(call, message_type, param);
                break;
 
                case MESSAGE_CONNECT:
-todo
+               lcr_in_connect(call, message_type, param);
                break;
 
                case MESSAGE_DISCONNECT:
-todo
+               lcr_in_disconnect(call, message_type, param);
                break;
 
                case MESSAGE_RELEASE:
-todo
-               free_call(call);
-               return(0);
+               lcr_in_release(call, message_type, param);
+               break;
 
                case MESSAGE_INFORMATION:
-todo
+               lcr_in_disconnect(call, message_type, param);
                break;
 
                case MESSAGE_FACILITY:
-todo
+               lcr_in_disconnect(call, message_type, param);
                break;
 
                case MESSAGE_PATTERN:
-todo
+#warning todo
                break;
 
                case MESSAGE_NOPATTERN:
-todo
+#warning todo
                break;
 
                case MESSAGE_AUDIOPATH:
-todo
+#warning todo
                break;
 
                default:
-unhandled
+#warning unhandled
        }
        return(0);
 }
@@ -371,6 +619,9 @@ int handle_socket(void)
        struct admin_message msg;
        struct admin_list *admin;
 
+       int sock;
+
+       #warning SOCKET FEHLT!
        /* read from socket */
        len = read(sock, &msg, sizeof(msg));
        if (len == 0)
@@ -446,7 +697,6 @@ int open_socket(void)
        char *socket_name = SOCKET_NAME;
        int conn;
        struct sockaddr_un sock_address;
-       int ret;
        unsigned long on = 1;
        union parameter param;
 
@@ -494,6 +744,8 @@ void close_socket(int sock)
 }
 
 
+hander thread muss noch
+socket muss per timer fuer das öffnen checken
 void lcr_thread(void)
 {
        int work;
@@ -503,7 +755,7 @@ void lcr_thread(void)
                work = 0;
 
                /* handle socket */
-               ret = handle_socket();
+               int ret = handle_socket();
                if (ret < 0)
                        break;
                if (ret)
@@ -519,192 +771,251 @@ void lcr_thread(void)
        }
 }
 
-/* call from asterisk (new instance) */
-static int lcr_call(struct ast_channel *ast, char *dest, int timeout)
+/*
+ * send setup info to LCR
+ * this function is called, when asterisk call is received and ref is received
+ */
+static void send_setup_to_lcr(struct chan_call *call)
 {
-       int port=0;
-       int r;
-       struct chan_list *ch=MISDN_ASTERISK_TECH_PVT(ast);
-       struct misdn_bchannel *newbc;
-       char *opts=NULL, *ext;
-       char dest_cp[256];
+       if (!ast || !call->ref)
+               return;
+
+       /* send setup message to LCR */
+       memset(&newparam, 0, sizeof(union parameter));
+       newparam.setup.xxxxxx = 
+       send_message(MESSAGE_SETUP, call->ref, &newparam);
+       /* change to outgoing setup state */
+       call->state = CHAN_LCR_STATE_OUT_SETUP;
+}
+
+/*
+ * send dialing info to LCR
+ * this function is called, when setup acknowledge is received and dialing
+ * info is available.
+ */
+static void send_dialing_to_lcr(struct chan_call *call)
+{
+       if (!ast || !call->ref || !call->dialque)
+               return;
        
+       /* send setup message to LCR */
+       memset(&newparam, 0, sizeof(union parameter));
+       strncpy(newparam.dialinginfo.id, call->dialque, sizeof(newparam.dialinginfo.id)-1);
+       call->dialque[0] = '\0';
+       send_message(MESSAGE_INFORMATION, call->ref, &newparam);
+}
+
+/*
+ * new asterisk instance
+ */
+static struct ast_channel *lcr_request(const char *type, int format, void *data, int *cause)
+{
+       /* create call instance */
+       call = alloc_call();
+       if (!call)
        {
-               strncpy(dest_cp,dest,sizeof(dest_cp)-1);
-               dest_cp[sizeof(dest_cp)]=0;
-
-               ext=dest_cp;
-               strsep(&ext,"/");
-               if (ext) {
-                       opts=ext;
-                       strsep(&opts,"/");
-               }  else {
-                       ast_log(LOG_WARNING, "Malformed dialstring\n");
-                       return -1;
-               }
+               /* failed to create instance */
+               return NULL;
        }
-
-       if (!ast) {
-               ast_log(LOG_WARNING, " --> ! misdn_call called on ast_channel *ast where ast == NULL\n");
-               return -1;
+       /* create asterisk channel instrance */
+       ast = ast_channel_alloc(1);
+       if (!ast)
+       {
+               free_call(call);
+               /* failed to create instance */
+               return NULL;
        }
+       /* link together */
+       ast->tech_pvt = call;
+       call->ast = ast;
+       /* send MESSAGE_NEWREF */
+       memset(&newparam, 0, sizeof(union parameter));
+       newparam.direction = 0; /* request from app */
+       send_message(MESSAGE_NEWREF, 0, &newparam);
+       /* set state */
+       call->state = CHAN_LCR_STATE_OUT_PREPARE;
+}
 
-       if (((ast->_state != AST_STATE_DOWN) && (ast->_state != AST_STATE_RESERVED)) || !dest  ) {
-               ast_log(LOG_WARNING, " --> ! misdn_call called on %s, neither down nor reserved (or dest==NULL)\n", ast->name);
-               ast->hangupcause=41;
-               ast_setstate(ast, AST_STATE_DOWN);
-               return -1;
-       }
+/*
+ * call from asterisk
+ */
+static int lcr_call(struct ast_channel *ast, char *dest, int timeout)
+{
+        struct lcr_pvt *lcr=ast->tech_pvt;
 
-       if (!ch) {
-               ast_log(LOG_WARNING, " --> ! misdn_call called on %s, neither down nor reserved (or dest==NULL)\n", ast->name);
-               ast->hangupcause=41;
-               ast_setstate(ast, AST_STATE_DOWN);
-               return -1;
-       }
-       
-       newbc=ch->bc;
-       
-       if (!newbc) {
-               ast_log(LOG_WARNING, " --> ! misdn_call called on %s, neither down nor reserved (or dest==NULL)\n", ast->name);
-               ast->hangupcause=41;
-               ast_setstate(ast, AST_STATE_DOWN);
-               return -1;
-       }
-       
-       port=newbc->port;
+        if (!lcr) return -1;
 
-       
-       chan_misdn_log(1, port, "* CALL: %s\n",dest);
-       
-       chan_misdn_log(2, port, " --> * dad:%s tech:%s ctx:%s\n",ast->exten,ast->name, ast->context);
-       
-       chan_misdn_log(3, port, " --> * adding2newbc ext %s\n",ast->exten);
-       if (ast->exten) {
-               int l = sizeof(newbc->dad);
-               strncpy(ast->exten,ext,sizeof(ast->exten));
+        char buf[128];
+        char *port_str, *dad, *p;
 
-               strncpy(newbc->dad,ext,l);
+       hier muss noch
+        ast_copy_string(buf, dest, sizeof(buf)-1);
+        p=buf;
+        port_str=strsep(&p, "/");
+        dad=strsep(&p, "/");
 
-               newbc->dad[l-1] = 0;
-       }
-       newbc->rad[0]=0;
-       chan_misdn_log(3, port, " --> * adding2newbc callerid %s\n",AST_CID_P(ast));
-       if (ast_strlen_zero(newbc->oad) && AST_CID_P(ast) ) {
-
-               if (AST_CID_P(ast)) {
-                       int l = sizeof(newbc->oad);
-                       strncpy(newbc->oad,AST_CID_P(ast), l);
-                       newbc->oad[l-1] = 0;
-               }
-       }
+       /* send setup message, if we already have a callref */
+       if (call->ref)
+               send_setup_to_lcr(call);
+
+        if (lcr_debug)
+                ast_verbose("Call: ext:%s dest:(%s) -> dad(%s) \n", ast->exten,dest, dad);
+
+
+       return 0; 
+}
+
+static int lcr_digit(struct ast_channel *ast, char digit)
+{
+       char buf[]="x";
+
+       /* only pass IA5 number space */
+       if (digit > 126 || digit < 32)
+               return 0;
 
+       /* send information or queue them */
+       if (call->ref && call->state == CHAN_LCR_STATE_OUT_DIALING)
        {
-               struct chan_list *ch=MISDN_ASTERISK_TECH_PVT(ast);
-               if (!ch) { ast_verbose("No chan_list in misdn_call\n"); return -1;}
-               
-               newbc->capability=ast->transfercapability;
-               pbx_builtin_setvar_helper(ast,"TRANSFERCAPABILITY",ast_transfercapability2str(newbc->capability));
-               if ( ast->transfercapability == INFO_CAPABILITY_DIGITAL_UNRESTRICTED) {
-                       chan_misdn_log(2, port, " --> * Call with flag Digital\n");
-               }
-               
+               send_dialing_to_lcr(call);
+       } else
+       if (!call->ref
+        && (call->state == CHAN_LCR_STATE_OUT_PREPARE || call->state == CHAN_LCR_STATE_OUT_SETUP));
+       {
+               *buf = digit;
+               strncat(call->dialque, buf, strlen(char->dialque)-1);
+       } else
+       {
+digits kommen, koennen aber nicht verwendet werden.
+       sollen wir sie als info senden (im connect zb.)
+       }
+}
 
-               /* update screening and presentation */ 
-               update_config(ch,ORG_AST);
-               
-               /* fill in some ies from channel vary*/
-               import_ch(ast, newbc, ch);
-               
-               /* Finally The Options Override Everything */
-               if (opts)
-                       misdn_set_opt_exec(ast,opts);
-               else
-                       chan_misdn_log(2,port,"NO OPTS GIVEN\n");
-
-               /*check for bridging*/
-               int bridging;
-               misdn_cfg_get( 0, MISDN_GEN_BRIDGING, &bridging, sizeof(int));
-               if (bridging && ch->other_ch) {
-                       chan_misdn_log(1, port, "Disabling EC (aka Pipeline) on both Sides\n");
-                       *ch->bc->pipeline=0;
-                       *ch->other_ch->bc->pipeline=0;
+static int lcr_answer(struct ast_channel *c)
+{
+        struct lcr_pvt *lcr=c->tech_pvt;
+        return 0;
+}
+
+static int lcr_hangup(struct ast_channel *ast)
+{
+        struct chan_call *call = ast->tech_pvt;
+
+       /* disconnect asterisk, maybe not required */
+       ast->tech_pvt = NULL;
+       if (ref)
+       {
+               /* release */
+               memset(&newparam, 0, sizeof(union parameter));
+               newparam.disconnectinfo.cause = CAUSE_RESSOURCEUNAVAIL;
+               newparam.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
+               send_message(MESSAGE_RELEASE, call->ref, &newparam);
+               /* remove call */
+               free_call(call);
+               return;
+       } else
+       {
+               /* ref is not set, due to prepare setup or release */
+               if (call->state == CHAN_LCR_STATE_RELEASE)
+               {
+                       /* we get the response to our release */
+                       free_call(call);
+               } else
+               {
+                       /* during prepare, we change to release state */
+                       call->state = CHAN_LCR_STATE_RELEASE;
                }
-               
-               r=misdn_lib_send_event( newbc, EVENT_SETUP );
-               
-               /** we should have l3id after sending setup **/
-               ch->l3id=newbc->l3_id;
-       }
-       
-       if ( r == -ENOCHAN  ) {
-               chan_misdn_log(0, port, " --> * Theres no Channel at the moment .. !\n");
-               chan_misdn_log(1, port, " --> * SEND: State Down pid:%d\n",newbc?newbc->pid:-1);
-               ast->hangupcause=34;
-               ast_setstate(ast, AST_STATE_DOWN);
-               return -1;
-       }
-       
-       chan_misdn_log(2, port, " --> * SEND: State Dialing pid:%d\n",newbc?newbc->pid:1);
+       } 
+}
 
-       ast_setstate(ast, AST_STATE_DIALING);
-       ast->hangupcause=16;
+static int lcr_write(struct ast_channel *c, struct ast_frame *f)
+{
+        struct lcr_pvt *lcrm= c->tech_pvt;
+}
 
-wenn pattern available soll gestoppt werden, sonst nicht:      
-       if (newbc->nt) stop_bc_tones(ch);
 
-       ch->state=MISDN_CALLING;
-       
-       return 0; 
+static struct ast_frame *lcr_read(struct ast_channel *c)
+{
+        struct lcr_pvt *lcr = c->tech_pvt;
 }
 
+static int lcr_indicate(struct ast_channel *c, int cond, const void *data, size_t datalen)
+{
+        int res = -1;
+
+        switch (cond) {
+                case AST_CONTROL_BUSY:
+                case AST_CONTROL_CONGESTION:
+                case AST_CONTROL_RINGING:
+                        return -1;
+                case -1:
+                        return 0;
+
+                case AST_CONTROL_VIDUPDATE:
+                        res = -1;
+                        break;
+                case AST_CONTROL_HOLD:
+                        ast_verbose(" << Console Has Been Placed on Hold >> \n");
+                        //ast_moh_start(c, data, g->mohinterpret);
+                        break;
+                case AST_CONTROL_UNHOLD:
+                        ast_verbose(" << Console Has Been Retrieved from Hold >> \n");
+                        //ast_moh_stop(c);
+                        break;
+
+                default:
+                        ast_log(LOG_WARNING, "Don't know how to display condition %d on %s\n", cond, c->name);
+                        return -1;
+        }
+
+        return 0;
+}
 
-static struct ast_channel_tech misdn_tech = {
+static struct ast_channel_tech lcr_tech = {
        .type="lcr",
        .description="Channel driver for connecting to Linux-Call-Router",
-       .capabilities= je nach option?AST_FORMAT_ALAW:AST_FORMAT_ULAW ,
+       .capabilities=AST_FORMAT_ALAW,
        .requester=lcr_request,
        .send_digit=lcr_digit,
        .call=lcr_call,
-       .bridge=lcr_bridge, 
+//     .bridge=lcr_bridge, 
        .hangup=lcr_hangup,
        .answer=lcr_answer,
        .read=lcr_read,
        .write=lcr_write,
-       .indicate=lcr_indication,
-       .fixup=lcr_fixup,
-       .send_text=lcr_send_text,
+       .indicate=lcr_indicate,
+//     .fixup=lcr_fixup,
+//     .send_text=lcr_send_text,
        .properties=0
 };
 
 /*
  * cli
  */
-static int cli_show_lcr (int fd, int argc, char *argv[])
+static int lcr_show_lcr (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_show_calls (int fd, int argc, char *argv[])
+static int lcr_show_calls (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_reload_routing (int fd, int argc, char *argv[])
+static int lcr_reload_routing (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_reload_interfaces (int fd, int argc, char *argv[])
+static int lcr_reload_interfaces (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_port_block (int fd, int argc, char *argv[])
+static int lcr_port_block (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_port_unblock (int fd, int argc, char *argv[])
+static int lcr_port_unblock (int fd, int argc, char *argv[])
 {
 }
 
-static int cli_port_unload (int fd, int argc, char *argv[])
+static int lcr_port_unload (int fd, int argc, char *argv[])
 {
 }
 
@@ -768,24 +1079,23 @@ int load_module(void)
 //     lcr_cfg_update_ptp();
 
        if (!(lcr_sock = open_socket())) {
-               ast_log(LOG_ERROR, "Unable to connect %s\n", misdn_type);
+               ast_log(LOG_ERROR, "Unable to connect\n");
                lcr_sock = -1;
                /* continue with closed socket */
        }
 
        if (!bchannel_initialize()) {
                ast_log(LOG_ERROR, "Unable to open mISDN device\n");
-               unload_module();
                return -1;
        }
        mISDN_created = 1;
 
        if (ast_channel_register(&lcr_tech)) {
-               ast_log(LOG_ERROR, "Unable to register channel class %s\n", misdn_type);
-               unload_module();
+               ast_log(LOG_ERROR, "Unable to register channel class\n");
                return -1;
        }
-  
+#if 0  
        ast_cli_register(&cli_show_lcr);
        ast_cli_register(&cli_show_calls);
 
@@ -815,6 +1125,9 @@ int load_module(void)
        lcr_cfg_get( 0, LCR_GEN_TRACEFILE, global_tracefile, BUFFERSIZE);
 
        chan_lcr_log(0, 0, "-- mISDN Channel Driver Registred -- (BE AWARE THIS DRIVER IS EXPERIMENTAL!)\n");
+=======
+       //lcr_cfg_get( 0, LCR_GEN_TRACEFILE, global_tracefile, BUFFERSIZE);
+#endif
 
        return 0;
 }
@@ -824,18 +1137,7 @@ int unload_module(void)
        /* First, take us out of the channel loop */
        ast_log(LOG_VERBOSE, "-- Unregistering mISDN Channel Driver --\n");
        
-       misdn_tasks_destroy();
        
-       if (!g_config_initialized) return 0;
-       
-       ast_cli_unregister(&cli_show_lcr);
-       ast_cli_unregister(&cli_show_calls);
-       ast_cli_unregister(&cli_reload_routing);
-       ast_cli_unregister(&cli_reload_interfaces);
-       ast_cli_unregister(&cli_port_block);
-       ast_cli_unregister(&cli_port_unblock);
-       ast_unregister_application("misdn_set_opt");
-  
        ast_channel_unregister(&lcr_tech);
 
        if (mISDN_created) {
@@ -848,18 +1150,19 @@ int unload_module(void)
                lcr_sock = -1;
        }
 
-       was ist mit dem mutex
-       
        return 0;
 }
 
-int reload(void)
+static int reload_module(void)
 {
-       reload_config();
-
+//     reload_config();
        return 0;
 }
 
+
+ast_mutex_t usecnt_lock;
+int usecnt;
+
 int usecount(void)
 {
        int res;
@@ -869,6 +1172,9 @@ int usecount(void)
        return res;
 }
 
+
+char *desc="Channel driver for lcr";
+
 char *description(void)
 {
        return desc;
@@ -879,4 +1185,12 @@ char *key(void)
        return ASTERISK_GPL_KEY;
 }
 
+#define AST_MODULE "chan_lcr"
+AST_MODULE_INFO(ASTERISK_GPL_KEY,
+                                AST_MODFLAG_DEFAULT,
+                                "Channel driver for LCR",
+                                .load = load_module,
+                                .unload = unload_module,
+                                .reload = reload_module,
+                           );