summaryrefslogtreecommitdiffstats
path: root/genrc.c
diff options
context:
space:
mode:
authorSuper User2008-06-01 18:52:10 +0200
committerSuper User2008-06-01 18:52:10 +0200
commit026b04fc75011a144285f399b82890803b4315bd (patch)
treefc208d625cc72cfaa317c160d42fc2cdcf7256a4 /genrc.c
parentwork (diff)
downloadlcr-026b04fc75011a144285f399b82890803b4315bd.tar.gz
lcr-026b04fc75011a144285f399b82890803b4315bd.tar.xz
lcr-026b04fc75011a144285f399b82890803b4315bd.zip
LCR is now uses socket based mISDN V2 API
*** chan_lcr, the Asterisk interface works (not complete yet). -> LCR can be used as Asterisk channel driver. modified: Makefile modified: Makefile.am modified: README modified: action.cpp modified: apppbx.cpp modified: bchannel.c modified: bchannel.h modified: callerid.c modified: cause.c modified: chan_lcr.c modified: chan_lcr.h modified: configure.ac modified: default/routing.conf modified: dss1.cpp modified: dss1.h modified: genrc.c modified: ie.cpp modified: interface.c modified: lcradmin.c modified: mISDN.cpp modified: mISDN.h modified: main.c modified: main.h modified: message.h modified: myisdn.h modified: route.c modified: socket_server.c modified: trace.h
Diffstat (limited to 'genrc.c')
-rw-r--r--genrc.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/genrc.c b/genrc.c
index e42abb2..5dabfc1 100644
--- a/genrc.c
+++ b/genrc.c
@@ -30,16 +30,16 @@ static struct cards {
int isac;
int ports;
} cards[] = {
- { "AVM Fritz PCI (PNP)", "avmfritz", 0, 1, 1},
+// { "AVM Fritz PCI (PNP)", "avmfritz", 0, 1, 1},
{ "HFC PCI (Cologne Chip)", "hfcpci", 1, 0, 1},
{ "HFC-4S 4 S/T Ports (Cologne Chip)", "hfcmulti", 1, 0, 4},
{ "HFC-8S 8 S/T Ports (Cologne Chip)", "hfcmulti", 1, 0, 8},
{ "HFC-E1 1 E1 Port (Cologne Chip)", "hfcmulti", 1, 0, 1},
{ "HFC-S USB (Cologne Chip)", "hfcsusb", 1, 0, 1},
- { "HFC-S MINI (Cologne Chip)", "hfcsmini", 1, 0, 1},
- { "XHFC (Cologne Chip)", "xhfc", 1, 0, 1},
- { "Sedlbaur FAX", "sedlfax", 0, 1, 1},
- { "Winbond 6692 PCI", "w6692pci", 0, 0, 1},
+// { "HFC-S MINI (Cologne Chip)", "hfcsmini", 1, 0, 1},
+// { "XHFC (Cologne Chip)", "xhfc", 1, 0, 1},
+// { "Sedlbaur FAX", "sedlfax", 0, 1, 1},
+// { "Winbond 6692 PCI", "w6692pci", 0, 0, 1},
{ NULL, NULL, 0, 0},
};
@@ -50,6 +50,9 @@ int main(void)
char input[256];
char protocol[1024], layermask[1024], types[256];
+ printf("This program is outdated and requires update to mISDN V2 API\n");
+ return (0);
+
printf("\n\nThis program generates a script, which is used to start/stop/restart mISDN\n");
printf("driver. All configuration of cards is done for using with the LCR.\n");