summaryrefslogtreecommitdiffstats
path: root/main.h
diff options
context:
space:
mode:
authorAndreas Eversberg2009-09-26 13:20:29 +0200
committerAndreas Eversberg2009-09-26 13:20:29 +0200
commit323cbc387b1a068f8e2bcfd1034666406ba18c93 (patch)
treeee251a238dde61870ef4bef687e7fcb6fff1f749 /main.h
parentSome minor corrections on default/interface.conf (diff)
downloadlcr-323cbc387b1a068f8e2bcfd1034666406ba18c93.tar.gz
lcr-323cbc387b1a068f8e2bcfd1034666406ba18c93.tar.xz
lcr-323cbc387b1a068f8e2bcfd1034666406ba18c93.zip
Added support for signalling system no. 5.
More infos will follow on the isdn4linux mailing list. modified: Makefile.am modified: Makefile.in modified: README modified: apppbx.cpp modified: configure modified: configure.ac modified: default/options.conf modified: dss1.cpp modified: ie.cpp modified: interface.c modified: interface.h modified: lcradmin.c modified: lcrsocket.h modified: mISDN.cpp modified: mISDN.h modified: main.c modified: main.h modified: port.h modified: socket_server.c new file: ss5.cpp new file: ss5.h new file: ss5_decode.c new file: ss5_decode.h new file: ss5_encode.c new file: ss5_encode.h
Diffstat (limited to 'main.h')
-rw-r--r--main.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.h b/main.h
index 0b9f754..e5802de 100644
--- a/main.h
+++ b/main.h
@@ -68,6 +68,7 @@ void debug(const char *function, int line, const char *prefix, char *buffer);
#define DEBUG_PORT 0x0100
#define DEBUG_ISDN 0x0110
#define DEBUG_GSM 0x0120
+#define DEBUG_SS5 0x0130
//#define DEBUG_KNOCK 0x0140
#define DEBUG_VBOX 0x0180
#define DEBUG_EPOINT 0x0200
@@ -151,6 +152,11 @@ extern "C" {
#ifdef WITH_GSM
#include "gsm.h"
#endif
+#ifdef WITH_SS5
+#include "ss5_encode.h"
+#include "ss5_decode.h"
+#include "ss5.h"
+#endif
#include "vbox.h"
#include "join.h"
#include "joinpbx.h"