25199705129f4f35e3c90e28202c154ef9a17bd0
[lcr.git] / main.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** PBX4Linux                                                                 **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** Header file for defining fixed values for the current version             **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12 #define NAME            "PBX4Linux"
13
14 #define DEFAULT_ENDPOINT_APP EndpointAppPBX
15
16 #define VERSION_STRING  "3.6 (Januar 2006)"
17
18 extern int memuse;
19 extern int mmemuse;
20 extern int cmemuse;
21 extern int ememuse;
22 extern int pmemuse;
23 extern int amemuse;
24 extern int rmemuse;
25 extern int classuse;
26 extern int fduse;
27 extern int fhuse;
28
29 #define PDEBUG(mask, fmt, arg...) _printdebug(__FUNCTION__, __LINE__, mask, fmt, ## arg)
30 #define PERROR(fmt, arg...) _printerror(__FUNCTION__, __LINE__, fmt, ## arg)
31 #define PDEBUG_RUNTIME(mask, fmt, arg...) _printdebug(NULL, 0, mask, fmt, ## arg)
32 #define PERROR_RUNTIME(fmt, arg...) _printerror(NULL, 0, fmt, ## arg)
33 void _printdebug(const char *function, int line, unsigned long mask, const char *fmt, ...);
34 void printlog(const char *fmt, ...);
35 void _printerror(const char *function, int line, const char *fmt, ...);
36
37 #define DEBUG_CONFIG    0x0001
38 #define DEBUG_MSG       0x0002
39 #define DEBUG_STACK     0x0004
40 #define DEBUG_BCHANNEL  0x0008
41 #define DEBUG_PORT      0x0100
42 #define DEBUG_ISDN      0x0110
43 //#define DEBUG_KNOCK   0x0140
44 #define DEBUG_VBOX      0x0180
45 #define DEBUG_EPOINT    0x0200
46 #define DEBUG_CALL      0x0400
47 #define DEBUG_VERSATEL  0x0800
48 #define DEBUG_CRYPT     0x1000
49 #define DEBUG_ROUTE     0x2000
50 #define DEBUG_IDLETIME  0x4000
51 #define DEBUG_LOG       0x7fff
52
53 // check any faulty malloc
54 #define MALLOC_CHECK_   1
55
56 /*
57  * one of the bits must be enabled in order to write log files
58  */
59 #define DEBUG_LOG       0x7fff
60
61 /* 
62  * transmit interval for tones and announcements (or samples of all kind)
63  * 
64  */
65 #define ISDN_TRANSMIT   128
66
67 /*
68  * preload transmit buffer to avoid gaps at the beginning due to jitter
69  * keep this 0 for minimum delay
70  */
71 #define ISDN_PRELOAD    0
72
73 /* give sendmail program. if not inside $PATH, give absolute path here (e.g. "/usr/sbin/sendmail")
74  */
75 #define SENDMAIL        "sendmail"
76
77 /* maximum number of redial/powerdial and reply numbers to remember
78  */
79 #define MAX_REMEMBER    50
80
81 /* leave it above 1024, because lower values can be unsafe, higher valuse cause
82  * data larger than 512 bytes of hex strings.
83  */
84 #define RSA_BITS        1536
85
86 /* 'goto' or 'menu' actions may cause infinite loops. they will be prevented by this limit.
87  * Also other recursions, like redialing the 'redial' action must be prevented.
88  * increase it ONLY IF you have a deeper tree of rule sets, than the value given here.
89  */
90 #define RULE_NESTING    10
91
92 /* special debugging for buffer overflow bugs
93  * note: whenever a buffer gets strange values, the budetect function must
94  * be modified to detect the change of these values. whenever it is detected,
95  * an error message is given at budetect function.
96  */
97 //#define BUDETECT_DEF
98
99 #ifdef BUDETECT_DEF
100  #define BUDETECT       budetect(__FILE__, __LINE__, __FUNCTION__);
101  void budetect(const char *file, int line, char *function);
102 #else
103  #define BUDETECT       ;
104 #endif
105
106 #include <stdio.h>
107 #include <stdlib.h>
108 #include <unistd.h>
109 #include <string.h>
110 #include <time.h>
111 #include <sys/time.h>
112 //#include <asm/bitops.h>
113 #ifdef __cplusplus
114 extern "C" {
115 #endif
116 #include <isdn_net.h>
117 #include <net_l3.h>
118 #ifdef __cplusplus
119 }
120 #endif
121 #include "save.h"
122 #include "options.h"
123 #include "interface.h"
124 #include "extension.h"
125 #include "message.h"
126 #include "endpoint.h"
127 #include "endpointapp.h"
128 #include "apppbx.h"
129 #include "route.h"
130 #include "port.h"
131 #include "mISDN.h"
132 #include "dss1.h"
133 #include "vbox.h"
134 #include "call.h"
135 #include "callpbx.h"
136 #include "callchan.h"
137 #include "cause.h"
138 #include "alawulaw.h"
139 #include "tones.h"
140 #include "crypt.h"
141 #include "admin_server.h"
142
143 extern double now_d;
144 extern time_t now;
145 extern struct tm *now_tm;
146 extern struct timeval now_tv;
147 extern struct timezone now_tz;
148
149
150