Skip to content
Snippets Groups Projects
Commit bd76cda6 authored by Matthew Fredrickson's avatar Matthew Fredrickson
Browse files

Merge in SS7 changes.... need to still cleanup zapata.conf

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43427 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 012e0f82
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,7 @@ OSSAUDIO=@PBX_OSS@ ...@@ -18,6 +18,7 @@ OSSAUDIO=@PBX_OSS@
PGSQL=@PBX_PGSQL@ PGSQL=@PBX_PGSQL@
POPT=@PBX_POPT@ POPT=@PBX_POPT@
PRI=@PBX_PRI@ PRI=@PBX_PRI@
SS7=@PBX_SS7@
QT=@PBX_QT@ QT=@PBX_QT@
RADIUS=@PBX_RADIUS@ RADIUS=@PBX_RADIUS@
SPEEX=@PBX_SPEEX@ SPEEX=@PBX_SPEEX@
......
This diff is collapsed.
...@@ -656,3 +656,37 @@ immediate=no ...@@ -656,3 +656,37 @@ immediate=no
;context=default ;context=default
;channel => 1 ;channel => 1
; Signaling type SS7
signalling = ss7
; Variant of SS7 signaling:
; Options are itu and ansi
ss7type = itu
; All settings apply to linkset 1
linkset = 1
; Point code of the linkset
pointcode = 1
; Point code of node adjacent to this signaling link (Possibly the STP between you and
; your destination)
adjpointcode = 2
; Default point code that you would like to assign to outgoing messages (in case of
; routing through STPs, or using A links)
defaultdpc = 3
; Begin CIC (Circuit indication codes) count with this number
cicbeginswith = 1
; What the MTP3 network indicator bits should be set to. Choices are
; national, national_spare, international, international_spare
networkindicator=international
; First signaling channel
sigchan = 48
; Channels to associate with CICs on this linkset
channel = 25-47
...@@ -194,6 +194,7 @@ AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss]) ...@@ -194,6 +194,7 @@ AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
AST_EXT_LIB_SETUP([POPT], [popt], [popt]) AST_EXT_LIB_SETUP([POPT], [popt], [popt])
AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres]) AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri]) AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib]) AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323]) AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
AST_EXT_LIB_SETUP([QT], [Qt], [qt]) AST_EXT_LIB_SETUP([QT], [Qt], [qt])
...@@ -702,6 +703,8 @@ AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h]) ...@@ -702,6 +703,8 @@ AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
AST_EXT_LIB_CHECK([PRI], [pri], [pri_call], [libpri.h]) AST_EXT_LIB_CHECK([PRI], [pri], [pri_call], [libpri.h])
AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_new], [libss7.h])
if test "${USE_PWLIB}" != "no"; then if test "${USE_PWLIB}" != "no"; then
if test ! -z "${PWLIB_DIR}"; then if test ! -z "${PWLIB_DIR}"; then
PWLIBDIR="${PWLIB_DIR}" PWLIBDIR="${PWLIB_DIR}"
......
...@@ -296,6 +296,9 @@ ...@@ -296,6 +296,9 @@
/* Define to 1 if you have the `sqrt' function. */ /* Define to 1 if you have the `sqrt' function. */
#undef HAVE_SQRT #undef HAVE_SQRT
/* Define to indicate the ${SS7_DESCRIP} library */
#undef HAVE_SS7
/* Define to 1 if `stat' has the bug that it succeeds when given the /* Define to 1 if `stat' has the bug that it succeeds when given the
zero-length file name argument. */ zero-length file name argument. */
#undef HAVE_STAT_EMPTY_STRING_BUG #undef HAVE_STAT_EMPTY_STRING_BUG
......
...@@ -114,6 +114,9 @@ POPT_LIB=@POPT_LIB@ ...@@ -114,6 +114,9 @@ POPT_LIB=@POPT_LIB@
PRI_INCLUDE=@PRI_INCLUDE@ PRI_INCLUDE=@PRI_INCLUDE@
PRI_LIB=@PRI_LIB@ PRI_LIB=@PRI_LIB@
PRI_INCLUDE=@SS7_INCLUDE@
PRI_LIB=@SS7_LIB@
PWLIB_INCLUDE=@PWLIB_INCLUDE@ PWLIB_INCLUDE=@PWLIB_INCLUDE@
PWLIB_LIB=@PWLIB_LIB@ PWLIB_LIB=@PWLIB_LIB@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment