socket api work
[lcr.git] / main.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** Linux Call Router                                                         **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** Header file for defining fixed values for the current version             **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <stdarg.h>
15 #include <unistd.h>
16 #include <string.h>
17 #include <signal.h>
18 #include <time.h>
19 #include <fcntl.h>
20 #include <errno.h>
21 #include <pthread.h>
22 #include <dirent.h>
23 #include <math.h>
24 #include <sys/time.h>
25 #include <sys/types.h>
26 #include <sys/wait.h>
27 #include <sys/stat.h>
28 #include <sys/ioctl.h>
29 #include <sys/file.h>
30 #include <sys/mman.h>
31 #include <sys/resource.h>
32
33 #define NAME            "LCR"
34
35 #define DEFAULT_ENDPOINT_APP EndpointAppPBX
36
37 #define VERSION_STRING  "0.5 (Spring 2007)"
38
39 extern int memuse;
40 extern int mmemuse;
41 extern int cmemuse;
42 extern int ememuse;
43 extern int pmemuse;
44 extern int amemuse;
45 extern int rmemuse;
46 extern int classuse;
47 extern int fduse;
48 extern int fhuse;
49
50 #ifdef SOCKET_MISDN
51 extern FILE *debug_fp;
52 #else
53 extern int global_debug;
54 #endif
55
56 #define PDEBUG(mask, fmt, arg...) _printdebug(__FUNCTION__, __LINE__, mask, fmt, ## arg)
57 #define PERROR(fmt, arg...) _printerror(__FUNCTION__, __LINE__, fmt, ## arg)
58 #define PDEBUG_RUNTIME(mask, fmt, arg...) _printdebug(NULL, 0, mask, fmt, ## arg)
59 #define PERROR_RUNTIME(fmt, arg...) _printerror(NULL, 0, fmt, ## arg)
60 void _printdebug(const char *function, int line, unsigned long mask, const char *fmt, ...);
61 void _printerror(const char *function, int line, const char *fmt, ...);
62 #define DEBUG_FUNC
63 void debug(const char *function, int line, char *prefix, char *buffer);
64
65 #define DEBUG_CONFIG    0x0001
66 #define DEBUG_MSG       0x0002
67 #define DEBUG_STACK     0x0004
68 #define DEBUG_BCHANNEL  0x0008
69 #define DEBUG_PORT      0x0100
70 #define DEBUG_ISDN      0x0110
71 //#define DEBUG_KNOCK   0x0140
72 #define DEBUG_VBOX      0x0180
73 #define DEBUG_EPOINT    0x0200
74 #define DEBUG_JOIN      0x0400
75 #define DEBUG_VERSATEL  0x0800
76 #define DEBUG_CRYPT     0x1000
77 #define DEBUG_ROUTE     0x2000
78 #define DEBUG_IDLETIME  0x4000
79 #define DEBUG_LOG       0x7fff
80
81 // check any faulty malloc
82 #define MALLOC_CHECK_   1
83
84 /*
85  * one of the bits must be enabled in order to write log files
86  */
87 #define DEBUG_LOG       0x7fff
88
89 /*
90  * load transmit buffer to avoid gaps at the beginning due to jitter
91  * also the maximum load that will be kept in tx-buffer
92  * also the (minimum) number of data to transmit in a frame
93  */
94 #define ISDN_LOAD       1024 // samples
95 #define ISDN_MAXLOAD    2048 // samples
96
97 /* give sendmail program. if not inside $PATH, give absolute path here (e.g. "/usr/sbin/sendmail")
98  */
99 #define SENDMAIL        "sendmail"
100
101 /* leave it above 1024, because lower values can be unsafe, higher valuse cause
102  * data larger than 512 bytes of hex strings.
103  */
104 #define RSA_BITS        1536
105
106 /* 'goto' or 'menu' actions may cause infinite loops. they will be prevented by this limit.
107  * Also other recursions, like redialing the 'redial' action must be prevented.
108  * increase it ONLY IF you have a deeper tree of rule sets, than the value given here.
109  */
110 #define RULE_NESTING    10
111
112 /* to debug core bridging, rather than mISDN dsp bridging, enable.
113  * this is for debugging only, bridging conferences will not work
114  */
115 //#define DEBUG_COREBRIDGE
116
117 /* special debugging for buffer overflow bugs
118  * note: whenever a buffer gets strange values, the budetect function must
119  * be modified to detect the change of these values. whenever it is detected,
120  * an error message is given at budetect function.
121  */
122 //#define BUDETECT_DEF
123
124 #ifdef BUDETECT_DEF
125  #define BUDETECT       budetect(__FILE__, __LINE__, __FUNCTION__);
126  void budetect(const char *file, int line, char *function);
127 #else
128  #define BUDETECT       ;
129 #endif
130
131 #ifdef __cplusplus
132 extern "C" {
133 #endif
134 #ifndef SOCKET_MISDN
135 #include <mISDNuser/isdn_net.h>
136 #include <mISDNuser/net_l3.h>
137 #endif
138 #ifdef __cplusplus
139 }
140 #endif
141 #include "macro.h"
142 #include "options.h"
143 #include "interface.h"
144 #include "extension.h"
145 #include "message.h"
146 #include "endpoint.h"
147 #include "endpointapp.h"
148 #include "apppbx.h"
149 #include "route.h"
150 #include "port.h"
151 #include "mISDN.h"
152 #include "dss1.h"
153 #include "vbox.h"
154 #include "join.h"
155 #include "joinpbx.h"
156 #include "joinremote.h"
157 #include "cause.h"
158 #include "alawulaw.h"
159 #include "tones.h"
160 #include "crypt.h"
161 #include "socket_server.h"
162 #include "trace.h"
163
164 extern double now_d;
165 extern time_t now;
166 extern struct tm *now_tm;
167 extern struct timeval now_tv;
168 extern struct timezone now_tz;
169
170 #define DIRECTION_NONE  0
171 #define DIRECTION_OUT   1
172 #define DIRECTION_IN    2
173
174 #if 0
175 struct lcr_fdset {
176         struct mISDNport *mISDNport;
177         int b_index;
178 };
179 #endif
180