dect
/
asterisk
Archived
13
0
Fork 0

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

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43427 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2006-09-21 18:41:33 +00:00
parent 9f3c1f75ff
commit 17a2c3577a
6 changed files with 1052 additions and 21 deletions

View File

@ -18,6 +18,7 @@ OSSAUDIO=@PBX_OSS@
PGSQL=@PBX_PGSQL@
POPT=@PBX_POPT@
PRI=@PBX_PRI@
SS7=@PBX_SS7@
QT=@PBX_QT@
RADIUS=@PBX_RADIUS@
SPEEX=@PBX_SPEEX@

File diff suppressed because it is too large Load Diff

View File

@ -656,3 +656,37 @@ immediate=no
;context=default
;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

View File

@ -194,6 +194,7 @@ AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
AST_EXT_LIB_SETUP([POPT], [popt], [popt])
AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
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([OPENH323], [OpenH323], [h323])
AST_EXT_LIB_SETUP([QT], [Qt], [qt])
@ -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([SS7], [ss7], [ss7_new], [libss7.h])
if test "${USE_PWLIB}" != "no"; then
if test ! -z "${PWLIB_DIR}"; then
PWLIBDIR="${PWLIB_DIR}"

View File

@ -296,6 +296,9 @@
/* Define to 1 if you have the `sqrt' function. */
#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
zero-length file name argument. */
#undef HAVE_STAT_EMPTY_STRING_BUG

View File

@ -114,6 +114,9 @@ POPT_LIB=@POPT_LIB@
PRI_INCLUDE=@PRI_INCLUDE@
PRI_LIB=@PRI_LIB@
PRI_INCLUDE=@SS7_INCLUDE@
PRI_LIB=@SS7_LIB@
PWLIB_INCLUDE=@PWLIB_INCLUDE@
PWLIB_LIB=@PWLIB_LIB@