<h1>Project "FreeSWITCH Source" received a push.</h1>
<h2>branch: master updated</h2>
<pre>
via: becb94052ac619290e6825c4f985917134c6bce2 (commit)
from: 0d276e7d7b7b52ac5510d139d8252fc10ad37298 (commit)
</pre>= COMMIT LOG ===========================================================
<div class="highlight"><pre>committer: Konrad Hammel
comments:
chlog: freetdm: ss7 - added support for RELAY
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/Makefile.am b/libs/freetdm/Makefile.am</span>
<span style="color: #000080; font-weight: bold">index 96f1c9a..b3353f3 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/Makefile.am</span>
<span style="color: #00A000">+++ b/libs/freetdm/Makefile.am</span>
<span style="color: #800080; font-weight: bold">@@ -240,7 +240,8 @@ ftmod_sangoma_ss7_la_SOURCES = \</span>
        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c \
        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c \
        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sts.c \
<span style="color: #A00000">-        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c</span>
<span style="color: #00A000">+        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c \</span>
<span style="color: #00A000">+        $(SRC)/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c</span>
ftmod_sangoma_ss7_la_CFLAGS = $(AM_CFLAGS) $(FTDM_CFLAGS) -D_GNU_SOURCE
ftmod_sangoma_ss7_la_LDFLAGS = -shared -module -avoid-version -lsng_ss7
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/configure.ac b/libs/freetdm/configure.ac</span>
<span style="color: #000080; font-weight: bold">index a070e99..1f4fc9c 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/configure.ac</span>
<span style="color: #00A000">+++ b/libs/freetdm/configure.ac</span>
<span style="color: #800080; font-weight: bold">@@ -267,7 +267,7 @@ fi</span>
#
HAVE_SNG_SS7="no"
AC_MSG_RESULT([${as_nl}<<>> Sangoma SS7 stack])
<span style="color: #A00000">-AC_CHECK_LIB([sng_ss7], [sng_isup_init], [HAVE_SNG_SS7="yes"])</span>
<span style="color: #00A000">+AC_CHECK_LIB([sng_ss7], [sng_isup_init_gen], [HAVE_SNG_SS7="yes"])</span>
AC_MSG_RESULT([checking whether to build ftmod_sangoma_ss7... ${HAVE_SNG_SS7}])
AM_CONDITIONAL([HAVE_SNG_SS7], [test "${HAVE_SNG_SS7}" = "yes"])
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/mod_freetdm/mod_freetdm.c b/libs/freetdm/mod_freetdm/mod_freetdm.c</span>
<span style="color: #000080; font-weight: bold">index 970cb5b..d972cd7 100755</span>
<span style="color: #A00000">--- a/libs/freetdm/mod_freetdm/mod_freetdm.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/mod_freetdm/mod_freetdm.c</span>
<span style="color: #800080; font-weight: bold">@@ -2360,8 +2360,9 @@ static int add_config_list_nodes(switch_xml_t swnode, ftdm_conf_node_t *rootnode</span>
static ftdm_conf_node_t *get_ss7_config_node(switch_xml_t cfg, const char *confname)
{
<span style="color: #A00000">-        switch_xml_t signode, ss7configs, isup;</span>
<span style="color: #A00000">-        ftdm_conf_node_t *rootnode;</span>
<span style="color: #00A000">+        switch_xml_t signode, ss7configs, isup, gen, param;</span>
<span style="color: #00A000">+        ftdm_conf_node_t *rootnode, *list;</span>
<span style="color: #00A000">+        char *var, *val;</span>
        /* try to find the conf in the hash first */
        rootnode = switch_core_hash_find(globals.ss7_configs, confname);
<span style="color: #800080; font-weight: bold">@@ -2405,8 +2406,56 @@ static ftdm_conf_node_t *get_ss7_config_node(switch_xml_t cfg, const char *confn</span>
                return NULL;
        }
<span style="color: #00A000">+        /* add sng_gen */</span>
<span style="color: #00A000">+        gen = switch_xml_child(isup, "sng_gen");</span>
<span style="color: #00A000">+        if (gen == NULL) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process sng_gen for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ((FTDM_SUCCESS != ftdm_conf_node_create("sng_gen", &list, rootnode))) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to create %s node for %s\n", "sng_gen", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        for (param = switch_xml_child(gen, "param"); param; param = param->next) {</span>
<span style="color: #00A000">+                var = (char *) switch_xml_attr_soft(param, "name");</span>
<span style="color: #00A000">+                val = (char *) switch_xml_attr_soft(param, "value");</span>
<span style="color: #00A000">+                ftdm_conf_node_add_param(list, var, val);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* add relay channels */</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "sng_relay", "relay_channel", NULL, NULL)) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process sng_relay for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* add mtp1 links */</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "mtp1_links", "mtp1_link", NULL, NULL)) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process mtp1_links for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* add mtp2 links */</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "mtp2_links", "mtp2_link", NULL, NULL)) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process mtp2_links for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* add mtp3 links */</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "mtp3_links", "mtp3_link", NULL, NULL)) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process mtp3_links for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        /* add mtp linksets */
<span style="color: #A00000">-        if (add_config_list_nodes(isup, rootnode, "mtp_linksets", "mtp_linkset", "mtp_links", "mtp_link")) {</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "mtp_linksets", "mtp_linkset", NULL, NULL)) {</span>
                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process mtp_linksets for sng_isup config %s\n", confname);
                ftdm_conf_node_destroy(rootnode);
                return NULL;
<span style="color: #800080; font-weight: bold">@@ -2426,6 +2475,13 @@ static ftdm_conf_node_t *get_ss7_config_node(switch_xml_t cfg, const char *confn</span>
                return NULL;
        }
<span style="color: #00A000">+        /* add cc spans */</span>
<span style="color: #00A000">+        if (add_config_list_nodes(isup, rootnode, "cc_spans", "cc_span", NULL, NULL)) {</span>
<span style="color: #00A000">+                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "failed to process cc_spans for sng_isup config %s\n", confname);</span>
<span style="color: #00A000">+                ftdm_conf_node_destroy(rootnode);</span>
<span style="color: #00A000">+                return NULL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        switch_core_hash_insert(globals.ss7_configs, confname, rootnode);
        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Added SS7 node configuration %s\n", confname);
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c</span>
<span style="color: #000080; font-weight: bold">index e7378bf..42b95a1 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c</span>
<span style="color: #800080; font-weight: bold">@@ -44,6 +44,7 @@</span>
/* PROTOTYPES *****************************************************************/
int ft_to_sngss7_cfg_all(void);
<span style="color: #00A000">+int ftmod_ss7_relay_gen_config(void);</span>
int ftmod_ss7_mtp1_gen_config(void);
int ftmod_ss7_mtp2_gen_config(void);
int ftmod_ss7_mtp3_gen_config(void);
<span style="color: #800080; font-weight: bold">@@ -65,6 +66,8 @@ int ftmod_ss7_isup_ckt_config(int id);</span>
int ftmod_ss7_isup_isap_config(int id);
int ftmod_ss7_cc_isap_config(int id);
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_relay_chan_config(int id);</span>
/******************************************************************************/
/* FUNCTIONS ******************************************************************/
<span style="color: #800080; font-weight: bold">@@ -75,6 +78,7 @@ int ft_to_sngss7_cfg_all(void)</span>
        /* check if we have done gen_config already */
        if (!(g_ftdm_sngss7_data.gen_config)) {
<span style="color: #00A000">+                /* start of by checking if the license and sig file are valid */</span>
                if (sng_validate_license(g_ftdm_sngss7_data.cfg.license,
                                                                 g_ftdm_sngss7_data.cfg.signature,
                                                                 g_ftdm_sngss7_data.cfg.spc)) {
<span style="color: #800080; font-weight: bold">@@ -83,50 +87,148 @@ int ft_to_sngss7_cfg_all(void)</span>
                        return 1;
                }
<span style="color: #A00000">-                if (ftmod_ss7_mtp1_gen_config()) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("MTP1 General configuration FAILED!\n");</span>
<span style="color: #A00000">-                        return 1;</span>
<span style="color: #A00000">-                } else {</span>
<span style="color: #A00000">-                        SS7_INFO("MTP1 General configuration DONE\n");</span>
<span style="color: #00A000">+                /* if the procId is not 0 then we are using relay mode */</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.procId != 0) {</span>
<span style="color: #00A000">+                        /* set the desired procID value */</span>
<span style="color: #00A000">+                        sng_set_procId((uint16_t)g_ftdm_sngss7_data.cfg.procId);</span>
                }
<span style="color: #A00000">-                if (ftmod_ss7_mtp2_gen_config()) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("MTP2 General configuration FAILED!\n");</span>
<span style="color: #00A000">+                /* start up the stack manager */</span>
<span style="color: #00A000">+                if (sng_isup_init_sm()) {</span>
<span style="color: #00A000">+                        SS7_CRITICAL("Failed to start Stack Manager\n");</span>
                        return 1;
                } else {
<span style="color: #A00000">-                        SS7_INFO("MTP2 General configuration DONE\n");</span>
<span style="color: #00A000">+                        SS7_INFO("Started Stack Manager!\n");</span>
                }
<span style="color: #A00000">-                if (ftmod_ss7_mtp3_gen_config()) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("MTP3 General configuration FAILED!\n");</span>
<span style="color: #A00000">-                        return 1;</span>
<span style="color: #A00000">-                } else {</span>
<span style="color: #A00000">-                        SS7_INFO("MTP3 General configuration DONE\n");</span>
<span style="color: #A00000">-                }</span>
<span style="color: #00A000">+                /* check if the configuration had a Relay Channel */</span>
<span style="color: #00A000">+                if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_RY)) { </span>
<span style="color: #00A000">+                        /* start up the relay task */</span>
<span style="color: #00A000">+                        if (sng_isup_init_relay()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start Relay\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started Relay!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #A00000">-                if (ftmod_ss7_isup_gen_config()) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("ISUP General configuration FAILED!\n");</span>
<span style="color: #A00000">-                        return 1;</span>
<span style="color: #A00000">-                } else {</span>
<span style="color: #A00000">-                        SS7_INFO("ISUP General configuration DONE\n");</span>
<span style="color: #A00000">-                }</span>
<span style="color: #00A000">+                        /* run general configuration on the relay task */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_relay_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Relay General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Relay General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #A00000">-                if (ftmod_ss7_cc_gen_config()) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("CC General configuration FAILED!\n");</span>
<span style="color: #A00000">-                        return 1;</span>
<span style="color: #A00000">-                } else {</span>
<span style="color: #A00000">-                        SS7_INFO("CC General configuration DONE\n");</span>
<span style="color: #A00000">-                }</span>
<span style="color: #00A000">+                } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_RY)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_CC)) {</span>
<span style="color: #00A000">+                        if (sng_isup_init_cc()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start Call-Control\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started Call-Control!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        if (ftmod_ss7_cc_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("CC General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("CC General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        if (ftmod_ss7_cc_isap_config(1)) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("CC ISAP configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("CC ISAP configuration DONE!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_CC)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP)) {</span>
<span style="color: #00A000">+                        if (sng_isup_init_isup()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start ISUP\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started ISUP!\n");</span>
<span style="color: #00A000">+                        }        </span>
<span style="color: #00A000">+                        if (ftmod_ss7_isup_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("ISUP General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("ISUP General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP3)) {</span>
<span style="color: #00A000">+                        if (sng_isup_init_mtp3()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start MTP3\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started MTP3!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp3_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("MTP3 General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("MTP3 General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP3)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP2)) {</span>
<span style="color: #00A000">+                        if (sng_isup_init_mtp2()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start MTP2\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started MTP2!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        if (sng_isup_init_mtp1()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Failed to start MTP2\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Started MTP1!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp1_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("MTP1 General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("MTP1 General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp2_gen_config()) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("MTP2 General configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("MTP2 General configuration DONE\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP2)) */</span>
                /* update the global gen_config so we don't do it again */
                g_ftdm_sngss7_data.gen_config = 1;
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+        } /* if (!(g_ftdm_sngss7_data.gen_config)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* go through all the relays channels and configure it */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.relay[x].id != 0) {</span>
<span style="color: #00A000">+                /* check if this relay channel has been configured already */</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.relay[x].flags & SNGSS7_CONFIGURED)) {</span>
<span style="color: #00A000">+                        /* send the specific configuration */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_relay_chan_config(x)) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("Relay Channel %d configuration FAILED!\n", x);</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("Relay Channel %d configuration DONE!\n", x);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.relay[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.relay[x].id != 0) */</span>
        x = 1;
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #00A000">+        while (x < (MAX_MTP_LINKS + 1)) {</span>
                /* check if this link has been configured already */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.mtpLink[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtp1Link[x].flags & SNGSS7_CONFIGURED) &&</span>
<span style="color: #00A000">+                         (g_ftdm_sngss7_data.cfg.mtp1Link[x].id != 0)) {</span>
                        /* configure mtp1 */
                        if (ftmod_ss7_mtp1_psap_config(x)) {
<span style="color: #800080; font-weight: bold">@@ -136,6 +238,18 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("MTP1 PSAP %d configuration DONE!\n", x);
                        }
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtp1Link[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.mtp1Link[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while (x < (MAX_MTP_LINKS + 1)) {</span>
<span style="color: #00A000">+                /* check if this link has been configured already */</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtp2Link[x].flags & SNGSS7_CONFIGURED) &&</span>
<span style="color: #00A000">+                         (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0)) {</span>
<span style="color: #00A000">+</span>
                        /* configure mtp2 */
                        if (ftmod_ss7_mtp2_dlsap_config(x)) {
                                SS7_CRITICAL("MTP2 DLSAP %d configuration FAILED!\n",x);
<span style="color: #800080; font-weight: bold">@@ -144,6 +258,18 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("MTP2 DLSAP %d configuration DONE!\n", x);
                        }
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtp2Link[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while (x < (MAX_MTP_LINKS + 1)) {</span>
<span style="color: #00A000">+                /* check if this link has been configured already */</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtp3Link[x].flags & SNGSS7_CONFIGURED) &&</span>
<span style="color: #00A000">+                         (g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0)) {</span>
<span style="color: #00A000">+</span>
                        /* configure mtp3 */
                        if (ftmod_ss7_mtp3_dlsap_config(x)) {
                                SS7_CRITICAL("MTP3 DLSAP %d configuration FAILED!\n", x);
<span style="color: #800080; font-weight: bold">@@ -152,17 +278,17 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("MTP3 DLSAP %d configuration DONE!\n", x);
                        }
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.mtpLink[x].flags |= CONFIGURED;</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtp3Link[x].flags |= SNGSS7_CONFIGURED;</span>
                }
                
                x++;
<span style="color: #A00000">-        } /* while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) */</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) */</span>
        x = 1;
        while (g_ftdm_sngss7_data.cfg.nsap[x].id != 0) {
                /* check if this link has been configured already */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.nsap[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.nsap[x].flags & SNGSS7_CONFIGURED)) {</span>
                        if (ftmod_ss7_mtp3_nsap_config(x)) {
                                SS7_CRITICAL("MTP3 NSAP %d configuration FAILED!\n", x);
<span style="color: #800080; font-weight: bold">@@ -178,9 +304,9 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("ISUP NSAP %d configuration DONE!\n", x);
                        }
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.nsap[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.nsap[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.nsap[x].id != 0) */
<span style="color: #800080; font-weight: bold">@@ -188,7 +314,7 @@ int ft_to_sngss7_cfg_all(void)</span>
        x = 1;
        while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) {
                /* check if this link has been configured already */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags & SNGSS7_CONFIGURED)) {</span>
                        if (ftmod_ss7_mtp3_linkset_config(x)) {
                                SS7_CRITICAL("MTP3 LINKSET %d configuration FAILED!\n", x);
<span style="color: #800080; font-weight: bold">@@ -197,9 +323,9 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("MTP3 LINKSET %d configuration DONE!\n", x);
                        }
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) */
<span style="color: #800080; font-weight: bold">@@ -207,7 +333,7 @@ int ft_to_sngss7_cfg_all(void)</span>
        x = 1;
        while ((g_ftdm_sngss7_data.cfg.mtpRoute[x].id != 0)) {
                /* check if this link has been configured already */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.mtpRoute[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtpRoute[x].flags & SNGSS7_CONFIGURED)) {</span>
                        if (ftmod_ss7_mtp3_route_config(x)) {
                                SS7_CRITICAL("MTP3 ROUTE %d configuration FAILED!\n", x);
<span style="color: #800080; font-weight: bold">@@ -216,31 +342,33 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("MTP3 ROUTE %d configuration DONE!\n",x);
                        }
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.mtpRoute[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtpRoute[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.mtpRoute[x].id != 0) */
<span style="color: #A00000">-        if (!(g_ftdm_sngss7_data.cfg.mtpRoute[0].flags & CONFIGURED)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                if (ftmod_ss7_mtp3_route_config(0)) {</span>
<span style="color: #A00000">-                        SS7_CRITICAL("MTP3 ROUTE 0 configuration FAILED!\n");</span>
<span style="color: #A00000">-                        return 1;</span>
<span style="color: #A00000">-                } else {</span>
<span style="color: #A00000">-                        SS7_INFO("MTP3 ROUTE 0 configuration DONE!\n");</span>
<span style="color: #A00000">-                }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpRoute[0].flags |= CONFIGURED;</span>
<span style="color: #A00000">-        } /* if !CONFIGURED */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtpRoute[1].id != 0) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.mtpRoute[0].flags & SNGSS7_CONFIGURED)) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp3_route_config(0)) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("MTP3 ROUTE 0 configuration FAILED!\n");</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("MTP3 ROUTE 0 configuration DONE!\n");</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtpRoute[0].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
<span style="color: #00A000">+        }</span>
        x = 1;
        while (g_ftdm_sngss7_data.cfg.isap[x].id != 0) {
                /* check if this link has been configured already */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.isap[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.isap[x].flags & SNGSS7_CONFIGURED)) {</span>
                        
                        if (ftmod_ss7_isup_isap_config(x)) {
                                SS7_CRITICAL("ISUP ISAP %d configuration FAILED!\n", x);
<span style="color: #800080; font-weight: bold">@@ -249,57 +377,51 @@ int ft_to_sngss7_cfg_all(void)</span>
                                SS7_INFO("ISUP ISAP %d configuration DONE!\n", x);
                        }
<span style="color: #A00000">-                        if (ftmod_ss7_cc_isap_config(x)) {</span>
<span style="color: #A00000">-                                SS7_CRITICAL("CC ISAP %d configuration FAILED!\n", x);</span>
<span style="color: #A00000">-                                return 1;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_INFO("CC ISAP %d configuration DONE!\n", x);</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.isap[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isap[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_CONFIGURED */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.isap[x].id != 0) */
<span style="color: #A00000">-        x = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.isupIntf[x].id != 0) {</span>
<span style="color: #A00000">-                /* check if this link has been configured already */</span>
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.isupIntf[x].flags & CONFIGURED)) {</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP)) {</span>
<span style="color: #00A000">+                x = 1;</span>
<span style="color: #00A000">+                while (g_ftdm_sngss7_data.cfg.isupIntf[x].id != 0) {</span>
<span style="color: #00A000">+                        /* check if this link has been configured already */</span>
<span style="color: #00A000">+                        if (!(g_ftdm_sngss7_data.cfg.isupIntf[x].flags & SNGSS7_CONFIGURED)) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                                if (ftmod_ss7_isup_intf_config(x)) {</span>
<span style="color: #00A000">+                                        SS7_CRITICAL("ISUP INTF %d configuration FAILED!\n", x);</span>
<span style="color: #00A000">+                                        return 1;</span>
<span style="color: #00A000">+                                } else {</span>
<span style="color: #00A000">+                                        SS7_INFO("ISUP INTF %d configuration DONE!\n", x);</span>
<span style="color: #00A000">+                                        /* set the interface to paused */</span>
<span style="color: #00A000">+                                        sngss7_set_flag(&g_ftdm_sngss7_data.cfg.isupIntf[x], SNGSS7_PAUSED);</span>
<span style="color: #00A000">+                                }</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                                /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                                g_ftdm_sngss7_data.cfg.isupIntf[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                        } /* if !SNGSS7_CONFIGURED */</span>
<span style="color: #00A000">+                        </span>
<span style="color: #00A000">+                        x++;</span>
<span style="color: #00A000">+                } /* while (g_ftdm_sngss7_data.cfg.isupIntf[x].id != 0) */</span>
<span style="color: #00A000">+        } /* if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP)) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+                if ( g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {</span>
<span style="color: #A00000">-                        if (ftmod_ss7_isup_intf_config(x)) {</span>
<span style="color: #A00000">-                                SS7_CRITICAL("ISUP INTF %d configuration FAILED!\n", x);</span>
<span style="color: #00A000">+                        if (ftmod_ss7_isup_ckt_config(x)) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("ISUP CKT %d configuration FAILED!\n", x);</span>
                                return 1;
                        } else {
<span style="color: #A00000">-                                SS7_INFO("ISUP INTF %d configuration DONE!\n", x);</span>
<span style="color: #A00000">-                                /* set the interface to paused */</span>
<span style="color: #A00000">-                                sngss7_set_flag(&g_ftdm_sngss7_data.cfg.isupIntf[x], SNGSS7_PAUSED);</span>
<span style="color: #00A000">+                                SS7_INFO("ISUP CKT %d configuration DONE!\n", x);</span>
                        }
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.isupIntf[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #A00000">-                </span>
<span style="color: #A00000">-                x++;</span>
<span style="color: #A00000">-        } /* while (g_ftdm_sngss7_data.cfg.isupIntf[x].id != 0) */</span>
<span style="color: #00A000">+                } /* if ( g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) */</span>
<span style="color: #A00000">-        x = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #A00000">-                /* check if this link has been configured already */</span>
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.isupCkt[x].flags & CONFIGURED)) {</span>
<span style="color: #A00000">-                        if ( g_ftdm_sngss7_data.cfg.isupCkt[x].type == 0) {</span>
<span style="color: #A00000">-                                if (ftmod_ss7_isup_ckt_config(x)) {</span>
<span style="color: #A00000">-                                        SS7_CRITICAL("ISUP CKT %d configuration FAILED!\n", x);</span>
<span style="color: #A00000">-                                        return 1;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        SS7_INFO("ISUP CKT %d configuration DONE!\n", x);</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* set the CONFIGURED flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.isupCkt[x].flags |= CONFIGURED;</span>
<span style="color: #A00000">-                } /* if !CONFIGURED */</span>
<span style="color: #00A000">+                /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].flags |= SNGSS7_CONFIGURED;</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */
<span style="color: #800080; font-weight: bold">@@ -308,6 +430,44 @@ int ft_to_sngss7_cfg_all(void)</span>
}
/******************************************************************************/
<span style="color: #00A000">+int ftmod_ss7_relay_gen_config(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        RyMngmt        cfg;        /*configuration structure*/</span>
<span style="color: #00A000">+        Pst                pst;        /*post structure*/</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTRY;</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* clear the configuration structure */</span>
<span style="color: #00A000">+        memset(&cfg, 0x0, sizeof(RyMngmt));</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* fill in some general sections of the header */</span>
<span style="color: #00A000">+        smHdrInit(&cfg.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* fill in the post structure */</span>
<span style="color: #00A000">+        smPstInit( &cfg.t.cfg.s.ryGenCfg.lmPst );</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /*fill in the specific fields of the header */</span>
<span style="color: #00A000">+        cfg.hdr.msgType                                                = TCFG;</span>
<span style="color: #00A000">+        cfg.hdr.entId.ent                                         = ENTRY;</span>
<span style="color: #00A000">+        cfg.hdr.entId.inst                                        = S_INST;</span>
<span style="color: #00A000">+        cfg.hdr.elmId.elmnt                                 = STGEN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryGenCfg.lmPst.srcEnt        = ENTRY;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryGenCfg.lmPst.dstEnt        = ENTSM;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryGenCfg.nmbChan                = 10;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryGenCfg.tmrRes                        = RY_PERIOD;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryGenCfg.usta                        = 1;</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return(sng_cfg_relay(&pst, &cfg));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
int ftmod_ss7_mtp1_gen_config(void)
{
        L1Mngmt        cfg;        /*configuration structure*/
<span style="color: #800080; font-weight: bold">@@ -575,7 +735,7 @@ int ftmod_ss7_mtp1_psap_config(int id)</span>
{
        L1Mngmt                        cfg;
        Pst                                pst;
<span style="color: #A00000">-        sng_mtp_link_t        *k = &g_ftdm_sngss7_data.cfg.mtpLink[id];</span>
<span style="color: #00A000">+        sng_mtp1_link_t        *k = &g_ftdm_sngss7_data.cfg.mtp1Link[id];</span>
        
        /* initalize the post structure */
        smPstInit(&pst);
<span style="color: #800080; font-weight: bold">@@ -597,8 +757,8 @@ int ftmod_ss7_mtp1_psap_config(int id)</span>
        
        cfg.hdr.elmId.elmntInst1        = k->id;
        
<span style="color: #A00000">-        cfg.t.cfg.s.l1PSAP.span                = k->mtp1.span;</span>
<span style="color: #A00000">-        cfg.t.cfg.s.l1PSAP.chan                = k->mtp1.chan;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.l1PSAP.span                = k->span;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.l1PSAP.chan                = k->chan;</span>
        cfg.t.cfg.s.l1PSAP.spId                = k->id;
        return(sng_cfg_mtp1(&pst, &cfg));
<span style="color: #800080; font-weight: bold">@@ -609,7 +769,7 @@ int ftmod_ss7_mtp2_dlsap_config(int id)</span>
{
        SdMngmt        cfg;
        Pst                pst;
<span style="color: #A00000">-        sng_mtp_link_t        *k = &g_ftdm_sngss7_data.cfg.mtpLink[id];</span>
<span style="color: #00A000">+        sng_mtp2_link_t        *k = &g_ftdm_sngss7_data.cfg.mtp2Link[id];</span>
        /* initalize the post structure */
        smPstInit( &pst);
<span style="color: #800080; font-weight: bold">@@ -633,10 +793,15 @@ int ftmod_ss7_mtp2_dlsap_config(int id)</span>
        cfg.t.cfg.s.sdDLSAP.mem.region                = S_REG;                                        /* memory region */
        cfg.t.cfg.s.sdDLSAP.mem.pool                = S_POOL;                                        /* memory pool */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.swtch                        = k->mtp2.linkType;                        /* protocol type */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.swtch                        = k->linkType;                        /* protocol type */</span>
        cfg.t.cfg.s.sdDLSAP.priorDl                        = PRIOR0;                                        /* priority for data link layer */
        cfg.t.cfg.s.sdDLSAP.routeDl                        = RTESPEC;                                        /* route for data link layer */
        cfg.t.cfg.s.sdDLSAP.selectorDl                = 0;                                                /* upper interface selector */
<span style="color: #00A000">+        if (k->mtp1ProcId > 0) {</span>
<span style="color: #00A000">+                cfg.t.cfg.s.sdDLSAP.dstProcId        = k->mtp1ProcId;                /* the procid of MAC/L1/MTP1 */</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                cfg.t.cfg.s.sdDLSAP.dstProcId        = SFndProcId();                                /* the procid of MAC/L1/MTP1 */</span>
<span style="color: #00A000">+        }</span>
        cfg.t.cfg.s.sdDLSAP.dstProcId                = SFndProcId();                                /* the procid of MAC/L1/MTP1 */
        cfg.t.cfg.s.sdDLSAP.entMac                        = ENTL1;                                        /* entity for MAC */
        cfg.t.cfg.s.sdDLSAP.instMac                        = S_INST;                                        /* instance for MAC */
<span style="color: #800080; font-weight: bold">@@ -646,22 +811,22 @@ int ftmod_ss7_mtp2_dlsap_config(int id)</span>
        cfg.t.cfg.s.sdDLSAP.memMac.region        = S_REG;                                        /* memory region and pool id for MAC */
        cfg.t.cfg.s.sdDLSAP.memMac.pool                = S_POOL;
        cfg.t.cfg.s.sdDLSAP.maxOutsFrms                = MAX_SD_OUTSTANDING;                /* maximum outstanding frames */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.errType                        = k->mtp2.errorType;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.errType                        = k->errorType;</span>
        cfg.t.cfg.s.sdDLSAP.t1.enb                        = TRUE;                                                /* timer 1 - Alignment Ready Timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t1.val                        = k->mtp2.t1;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t1.val                        = k->t1;</span>
        cfg.t.cfg.s.sdDLSAP.t2.enb                        = TRUE;                                                /* timer 2 - Not Aligned Timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t2.val                        = k->mtp2.t2;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t2.val                        = k->t2;</span>
        cfg.t.cfg.s.sdDLSAP.t3.enb                        = TRUE;                                                /* timer 3 - Aligned Timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t3.val                        = k->mtp2.t3;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t3.val                        = k->t3;</span>
        cfg.t.cfg.s.sdDLSAP.t5.enb                        = TRUE;                                                /* timer 5 - Sending SIB timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t5.val                        = k->mtp2.t5;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t5.val                        = k->t5;</span>
        cfg.t.cfg.s.sdDLSAP.t6.enb                        = TRUE;                                                /* timer 6 - Remote Congestion Timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t6.val                        = k->mtp2.t6;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t6.val                        = k->t6;</span>
        cfg.t.cfg.s.sdDLSAP.t7.enb                        = TRUE;                                                /* timer 7 - Excessive delay of acknowledgement timer */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.t7.val                        = k->mtp2.t7;</span>
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.provEmrgcy                = k->mtp2.t4e;                                /* emergency proving period */</span>
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.provNormal                = k->mtp2.t4n;                                /* normal proving period */</span>
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.lssuLen                        = k->mtp2.lssuLength;                        /* one or two byte LSSU length */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.t7.val                        = k->t7;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.provEmrgcy                = k->t4e;                                /* emergency proving period */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.provNormal                = k->t4n;                                /* normal proving period */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.lssuLen                        = k->lssuLength;                        /* one or two byte LSSU length */</span>
        cfg.t.cfg.s.sdDLSAP.maxFrmLen                = MAX_SD_FRAME_LEN;                        /* max frame length for MSU */
        cfg.t.cfg.s.sdDLSAP.congDisc                = FALSE;                                        /* congestion discard TRUE or FALSE */
        cfg.t.cfg.s.sdDLSAP.sdT                                = MAX_SD_SUERM;                                /* SUERM error rate threshold */
<span style="color: #800080; font-weight: bold">@@ -670,7 +835,7 @@ int ftmod_ss7_mtp2_dlsap_config(int id)</span>
        cfg.t.cfg.s.sdDLSAP.sdN1                        = MAX_SD_MSU_RETRANS;                /* maximum number of MSUs for retransmission */
        cfg.t.cfg.s.sdDLSAP.sdN2                        = MAX_SD_OCTETS_RETRANS;        /* maximum number of MSU octets for retrans */
        cfg.t.cfg.s.sdDLSAP.sdCp                        = MAX_SD_ALIGN_ATTEMPTS;        /* maximum number of alignment attempts */
<span style="color: #A00000">-        cfg.t.cfg.s.sdDLSAP.spIdSE                        = k->mtp2.mtp1Id;                                /* service provider id */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.sdDLSAP.spIdSE                        = k->mtp1Id;                                /* service provider id */</span>
        cfg.t.cfg.s.sdDLSAP.sdtFlcStartTr        = 256;                                                /* SDT interface flow control start thresh */
        cfg.t.cfg.s.sdDLSAP.sdtFlcEndTr                = 512;                                                /* SDT interface flow control end thresh */
<span style="color: #800080; font-weight: bold">@@ -707,7 +872,6 @@ int ftmod_ss7_mtp2_dlsap_config(int id)</span>
#endif /*RUG*/
        return(sng_cfg_mtp2(&pst, &cfg));
<span style="color: #A00000">-        return 0;</span>
}
/******************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -715,7 +879,7 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
{
        Pst                                pst;
        SnMngmt                        cfg;
<span style="color: #A00000">-        sng_mtp_link_t        *k = &g_ftdm_sngss7_data.cfg.mtpLink[id];</span>
<span style="color: #00A000">+        sng_mtp3_link_t        *k = &g_ftdm_sngss7_data.cfg.mtp3Link[id];</span>
        /* initalize the post structure */
<span style="color: #800080; font-weight: bold">@@ -738,14 +902,14 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
        cfg.hdr.elmId.elmntInst1                         = k->id;
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.lnkSetId                = k->mtp3.linkSetId;        /* link set ID */</span>
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.opc                                = k->mtp3.spc;                        /* Originating Postatic int Code */</span>
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.adjDpc                        = k->mtp3.apc;                        /* Adlacent Destination Postatic int Code */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.lnkSetId                = k->linkSetId;                        /* link set ID */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.opc                                = k->spc;                                /* Originating Postatic int Code */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.adjDpc                        = k->apc;                                /* Adlacent Destination Postatic int Code */</span>
        cfg.t.cfg.s.snDLSAP.lnkPrior                = 0;                                        /* link priority within the link set */
        cfg.t.cfg.s.snDLSAP.msgSize                        = MAX_SN_MSG_SIZE;                /* message length */
        cfg.t.cfg.s.snDLSAP.msgPrior                = 0;                                        /* management message priority */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.lnkType                        = k->mtp3.linkType;                /* link type ANSI, ITU, BICI or CHINA */</span>
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.upSwtch                        = k->mtp3.switchType;        /* user part switch type */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.lnkType                        = k->linkType;                        /* link type ANSI, ITU, BICI or CHINA */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.upSwtch                        = k->switchType;                /* user part switch type */</span>
        cfg.t.cfg.s.snDLSAP.maxSLTtry                = MAX_SLTM_RETRIES;                /* maximun times to retry SLTM */
        cfg.t.cfg.s.snDLSAP.p0QLen                        = 32;                                        /* size of the priority 0 Q */
        cfg.t.cfg.s.snDLSAP.p1QLen                        = 32;                                        /* size of the priority 1 Q */
<span style="color: #800080; font-weight: bold">@@ -756,7 +920,7 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
        cfg.t.cfg.s.snDLSAP.maxCredit                = MAX_SN_CREDIT;                /* max credit */
#endif /* SDT2 */
        cfg.t.cfg.s.snDLSAP.lnkId                        = 0;                                        /* signalling link allocation procedure identity */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.lnkTstSLC                = k->mtp3.slc;                        /* link selection code for link test */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.lnkTstSLC                = k->slc;                                /* link selection code for link test */</span>
        cfg.t.cfg.s.snDLSAP.tstLen                        = 6;                                        /* link test pattern length */
        cfg.t.cfg.s.snDLSAP.tst[0]                        = 'K';                                        /* link test pattern */
        cfg.t.cfg.s.snDLSAP.tst[1]                        = 'O';                                        /* link test pattern */
<span style="color: #800080; font-weight: bold">@@ -764,8 +928,8 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
        cfg.t.cfg.s.snDLSAP.tst[3]                        = 'R';                                        /* link test pattern */
        cfg.t.cfg.s.snDLSAP.tst[4]                        = 'A';                                        /* link test pattern */
        cfg.t.cfg.s.snDLSAP.tst[5]                        = 'D';                                        /* link test pattern */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.ssf                                = k->mtp3.ssf;                        /* sub service field */ </span>
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.dstProcId                = SFndProcId();                        /* destination processor id */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.ssf                                = k->ssf;                                /* sub service field */ </span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.dstProcId                = k->mtp2ProcId;                /* destination processor id */</span>
        cfg.t.cfg.s.snDLSAP.dstEnt                        = ENTSD;                                /* entity */
        cfg.t.cfg.s.snDLSAP.dstInst                        = S_INST;                                /* instance */
        cfg.t.cfg.s.snDLSAP.prior                        = PRIOR0;                                /* priority */
<span style="color: #800080; font-weight: bold">@@ -773,9 +937,9 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
        cfg.t.cfg.s.snDLSAP.selector                = 0;                                        /* lower layer selector */
        cfg.t.cfg.s.snDLSAP.mem.region                = S_REG;                                /* memory region id */
        cfg.t.cfg.s.snDLSAP.mem.pool                = S_POOL;                                /* memory pool id */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.spId                        = k->mtp3.mtp2Id                /* service provider id */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.spId                        = k->mtp2Id;                        /* service provider id */</span>
<span style="color: #A00000">-        switch (k->mtp3.linkType) {</span>
<span style="color: #00A000">+        switch (k->linkType) {</span>
        /**************************************************************************/
        case (LSN_SW_ANS):
        case (LSN_SW_ANS96):
<span style="color: #800080; font-weight: bold">@@ -793,9 +957,9 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
                cfg.t.cfg.s.snDLSAP.dpcLen                = DPC14;                                /* dpc length 14 bits */
                break;
        /**************************************************************************/
<span style="color: #A00000">-        } /* switch (k->mtp3.linkType) */</span>
<span style="color: #00A000">+        } /* switch (k->linkType) */</span>
<span style="color: #A00000">-        switch (k->mtp3.linkType) {</span>
<span style="color: #00A000">+        switch (k->linkType) {</span>
        /**************************************************************************/
        case (LSN_SW_ANS):
        case (LSN_SW_ANS96):
<span style="color: #800080; font-weight: bold">@@ -811,51 +975,51 @@ int ftmod_ss7_mtp3_dlsap_config(int id)</span>
                cfg.t.cfg.s.snDLSAP.flushContFlag        = FALSE;                        /* flush continue handling */
                break;
        /**************************************************************************/
<span style="color: #A00000">-        } /* switch (k->mtp3.linkType) */</span>
<span style="color: #00A000">+        } /* switch (k->linkType) */</span>
        cfg.t.cfg.s.snDLSAP.tmr.t1.enb                = TRUE;                                        /* t1 - delay to avoid missequencing on changeover */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t1.val                = k->mtp3.t1;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t1.val                = k->t1;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t2.enb                = TRUE;                                        /* t2 - waiting for changeover ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t2.val                = k->mtp3.t2;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t2.val                = k->t2;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t3.enb                = TRUE;                                        /* t3 - delay to avoid missequencing on changeback */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t3.val                = k->mtp3.t3;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t3.val                = k->t3;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t4.enb                = TRUE;                                        /* t4 - waiting for first changeback ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t4.val                = k->mtp3.t4;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t4.val                = k->t4;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t5.enb                = TRUE;                                        /* t5 - waiting for second changeback ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t5.val                = k->mtp3.t5;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t5.val                = k->t5;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t7.enb                = TRUE;                                        /* t7 - waiting for link connection ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t7.val                = k->mtp3.t7;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t7.val                = k->t7;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t12.enb                = TRUE;                                        /* t12 - waiting for uninhibit ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t12.val                = k->mtp3.t12;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t12.val                = k->t12;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t13.enb                = TRUE;                                        /* t13 - waiting for forced uninhibit */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t13.val                = k->mtp3.t13;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t13.val                = k->t13;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t14.enb                = TRUE;                                        /* t14 - waiting for inhibition ack */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t14.val                = k->mtp3.t14;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t14.val                = k->t14;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t17.enb                = TRUE;                                        /* t17 - delay to avoid oscillation of initial alignment failure */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t17.val                = k->mtp3.t17;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t17.val                = k->t17;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t22.enb                = TRUE;                                        /* t22 - local inhibit test timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t22.val                = k->mtp3.t22;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t22.val                = k->t22;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t23.enb                = TRUE;                                        /* t23 - remote inhibit test timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t23.val                = k->mtp3.t23;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t23.val                = k->t23;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t24.enb                = TRUE;                                        /* t24 - stabilizing timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t24.val                = k->mtp3.t24;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t24.val                = k->t24;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t31.enb                = TRUE;                                        /* t31 - BSN requested timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t31.val                = k->mtp3.t31;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t31.val                = k->t31;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t32.enb                = TRUE;                                        /* t32 - SLT timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t32.val                = k->mtp3.t32;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t32.val                = k->t32;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t33.enb                = TRUE;                                        /* t33 - connecting timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t33.val                = k->mtp3.t33;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t33.val                = k->t33;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t34.enb                = TRUE;                                        /* t34 - periodic signalling link test timer */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t34.val                = k->mtp3.t34;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t34.val                = k->t34;</span>
#if (SS7_ANS92 || SS7_ANS88 || SS7_ANS96 || defined(TDS_ROLL_UPGRADE_SUPPORT))
        cfg.t.cfg.s.snDLSAP.tmr.t35.enb                = TRUE;                                        /* t35 - false link congestion timer, same as t31 of ANSI'96*/
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t35.val                = k->mtp3.t35;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t35.val                = k->t35;</span>
        cfg.t.cfg.s.snDLSAP.tmr.t36.enb                = TRUE;                                        /* t36 - false link congestion timer, same as t33 of ANSI'96*/
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t36.val                = k->mtp3.t36;        </span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t36.val                = k->t36;        </span>
        cfg.t.cfg.s.snDLSAP.tmr.t37.enb                = TRUE;                                        /* t37 - false link congestion timer, same as t34 of ANSI'96*/
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.t37.val                = k->mtp3.t37;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.t37.val                = k->t37;</span>
        cfg.t.cfg.s.snDLSAP.tmr.tCraft.enb        = TRUE;                                        /* link referral craft timer - T19 in ANSI */
<span style="color: #A00000">-        cfg.t.cfg.s.snDLSAP.tmr.tCraft.val        = k->mtp3.tcraft;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.snDLSAP.tmr.tCraft.val        = k->tcraft;</span>
#endif
#ifdef SDT2
        cfg.t.cfg.s.snDLSAP.tmr.tFlc.enb        = TRUE;                                        /* flow control timer */
<span style="color: #800080; font-weight: bold">@@ -1217,6 +1381,11 @@ int ftmod_ss7_isup_ckt_config(int id)</span>
        /* insert the destination Entity */
        pst.dstEnt = ENTSI;
<span style="color: #00A000">+        /* check the for the correct ProcId and make sure it goes to the right system */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.procId != 1) {</span>
<span style="color: #00A000">+                pst.dstProcId = 1;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        /*clear the configuration structure*/
        memset(&cfg, 0x0, sizeof(SiMngmt));
<span style="color: #800080; font-weight: bold">@@ -1417,11 +1586,11 @@ int ftmod_ss7_isup_isap_config(int id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_cc_isap_config(int id)</span>
<span style="color: #00A000">+int ftmod_ss7_cc_isap_config(int dstProcId)</span>
{
        CcMngmt         cfg;
        Pst                 pst;
<span style="color: #A00000">-        sng_isap_t        *k = &g_ftdm_sngss7_data.cfg.isap[id];</span>
<span style="color: #00A000">+</span>
        /* initalize the post structure */
        smPstInit(&pst);
<span style="color: #800080; font-weight: bold">@@ -1441,11 +1610,11 @@ int ftmod_ss7_cc_isap_config(int id)</span>
        cfg.hdr.entId.inst                                        = S_INST;
        cfg.hdr.elmId.elmnt                                        = STISAP;
<span style="color: #A00000">-        cfg.hdr.elmId.elmntInst1                         = k->id;</span>
<span style="color: #00A000">+        cfg.hdr.elmId.elmntInst1                         = 1;</span>
<span style="color: #A00000">-        cfg.t.cfg.s.ccISAP.suId                                 = k->suId;</span>
<span style="color: #A00000">-        cfg.t.cfg.s.ccISAP.spId                                 = k->spId;</span>
<span style="color: #A00000">-        cfg.t.cfg.s.ccISAP.pst.dstProcId        = SFndProcId();</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ccISAP.suId                                 = 1;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ccISAP.spId                                 = 1;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ccISAP.pst.dstProcId        = dstProcId;</span>
        cfg.t.cfg.s.ccISAP.pst.dstEnt                = ENTSI;
        cfg.t.cfg.s.ccISAP.pst.dstInst                = S_INST;
        cfg.t.cfg.s.ccISAP.pst.srcProcId        = SFndProcId();
<span style="color: #800080; font-weight: bold">@@ -1461,6 +1630,70 @@ int ftmod_ss7_cc_isap_config(int id)</span>
}
/******************************************************************************/
<span style="color: #00A000">+int ftmod_ss7_relay_chan_config(int id)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        RyMngmt        cfg;        /*configuration structure*/</span>
<span style="color: #00A000">+        Pst                pst;        /*post structure*/</span>
<span style="color: #00A000">+        sng_relay_t                *k = &g_ftdm_sngss7_data.cfg.relay[id];</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTRY;</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* clear the configuration structure */</span>
<span style="color: #00A000">+        memset(&cfg, 0x0, sizeof(RyMngmt));</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* fill in some general sections of the header */</span>
<span style="color: #00A000">+        smHdrInit(&cfg.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /*fill in the specific fields of the header */</span>
<span style="color: #00A000">+        cfg.hdr.msgType                                                        = TCFG;</span>
<span style="color: #00A000">+        cfg.hdr.entId.ent                                                 = ENTRY;</span>
<span style="color: #00A000">+        cfg.hdr.entId.inst                                                = S_INST;</span>
<span style="color: #00A000">+        cfg.hdr.elmId.elmnt                                         = STCHCFG;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cfg.hdr.elmId.elmntInst1                                 = k->id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.id                                = k->id;                                        /* channel id */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.type                                = k->type;                                        /* channel type */</span>
<span style="color: #00A000">+/*        cfg.t.cfg.s.ryChanCfg.msInd                                =;*/                                                /* master/slave indicator */</span>
<span style="color: #00A000">+        if (k->type == LRY_CT_TCP_LISTEN) {</span>
<span style="color: #00A000">+                cfg.t.cfg.s.ryChanCfg.low                        = 0;                                                /* low proc id for channel */</span>
<span style="color: #00A000">+                cfg.t.cfg.s.ryChanCfg.high                        = 0;                                                /* high proc id for channel */</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                cfg.t.cfg.s.ryChanCfg.low                        = k->procId;                                /* low proc id for channel */</span>
<span style="color: #00A000">+                cfg.t.cfg.s.ryChanCfg.high                        = k->procId;                                /* high proc id for channel */</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.nmbScanQ                        = MAX_RELAY_NMBSCAN;                /* number of times to scan the queue */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.flags                                = LRY_FLG_INTR;                                /* flags */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.congThrsh                        = MAX_RELAY_CONGTHRSH;                /* congestion threshold */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.dropThrsh                        = 0;                                                /* drop threshold */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.contThrsh                        = MAX_RELAY_CONGTHRSH + 1;        /* continue threshold */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.kaTxTmr.enb                = 1;                                                /* keep alive transmit timer config */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.kaTxTmr.val                = RY_TX_KP_ALIVE_TMR;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.kaRxTmr.enb                = 1;                                                /* keep alive receive timer config */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.kaRxTmr.val                = RY_RX_KP_ALIVE_TMR;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.btTmr.enb                        = 1;                                                /* boot timer */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.btTmr.val                        = RY_BT_TMR;</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.region                        = S_REG;                                        /* Relay region */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.pool                                = S_POOL;                                        /* Relay pool */</span>
<span style="color: #00A000">+#if (RY_ENBUDPSOCK || RY_ENBTCPSOCK) </span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.listenPortNo                = k->port;                                        /* Listen Port of Rx Relay Channel*/</span>
<span style="color: #00A000">+        strncpy(cfg.t.cfg.s.ryChanCfg.transmittoHostName, k->hostname, (size_t)RY_REMHOSTNAME_SIZE);</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.transmittoPortNo        = k->port;                                        /* TransmitTo PortId for Tx Relay Channel */</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.targetProcId                = k->procId;                                /* procId of the node present in the other end of this channel */</span>
<span style="color: #00A000">+# ifdef LRY1</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.sockParam                        =; /* Socket Parameters */</span>
<span style="color: #00A000">+# endif /* LRY1 */</span>
<span style="color: #00A000">+# ifdef LRYV2</span>
<span style="color: #00A000">+        cfg.t.cfg.s.ryChanCfg.selfHostName[RY_REMHOSTNAME_SIZE];</span>
<span style="color: #00A000">+# endif /* LRY2 */</span>
<span style="color: #00A000">+#endif /* RY_ENBUDPSOCK || RY_ENBTCPSOCK */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return(sng_cfg_relay(&pst, &cfg));</span>
<span style="color: #00A000">+}</span>
/******************************************************************************/
/* For Emacs:
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c</span>
<span style="color: #000080; font-weight: bold">index dc2d24f..4ab4359 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c</span>
<span style="color: #800080; font-weight: bold">@@ -46,6 +46,8 @@ ftdm_status_t ftdm_sngss7_handle_cli_cmd(ftdm_stream_handle_t *stream, const cha</span>
static ftdm_status_t handle_print_usuage(ftdm_stream_handle_t *stream);
<span style="color: #00A000">+static ftdm_status_t handle_show_procId(ftdm_stream_handle_t *stream);</span>
<span style="color: #00A000">+</span>
static ftdm_status_t handle_set_function_trace(ftdm_stream_handle_t *stream, int on, int level);
static ftdm_status_t handle_set_message_trace(ftdm_stream_handle_t *stream, int on, int level);
static ftdm_status_t handle_set_inhibit(ftdm_stream_handle_t *stream, char *name);
<span style="color: #800080; font-weight: bold">@@ -67,6 +69,8 @@ static ftdm_status_t handle_tx_ubl(ftdm_stream_handle_t *stream, int span, int c</span>
static ftdm_status_t handle_tx_cgb(ftdm_stream_handle_t *stream, int span, int chan, int range, int verbose);
static ftdm_status_t handle_tx_cgu(ftdm_stream_handle_t *stream, int span, int chan, int range, int verbose);
<span style="color: #00A000">+static ftdm_status_t handle_bind_link(ftdm_stream_handle_t *stream, char *name);</span>
<span style="color: #00A000">+static ftdm_status_t handle_unbind_link(ftdm_stream_handle_t *stream, char *name);</span>
static ftdm_status_t handle_activate_link(ftdm_stream_handle_t *stream, char *name);
static ftdm_status_t handle_deactivate_link(ftdm_stream_handle_t *stream, char *name);
<span style="color: #800080; font-weight: bold">@@ -76,9 +80,12 @@ static ftdm_status_t handle_deactivate_linkset(ftdm_stream_handle_t *stream, cha</span>
static ftdm_status_t handle_tx_lpo(ftdm_stream_handle_t *stream, char *name);
static ftdm_status_t handle_tx_lpr(ftdm_stream_handle_t *stream, char *name);
<span style="color: #A00000">-static ftdm_status_t handle_status_link(ftdm_stream_handle_t *stream, char *name);</span>
<span style="color: #00A000">+static ftdm_status_t handle_status_mtp3link(ftdm_stream_handle_t *stream, char *name);</span>
<span style="color: #00A000">+static ftdm_status_t handle_status_mtp2link(ftdm_stream_handle_t *stream, char *name);</span>
static ftdm_status_t handle_status_linkset(ftdm_stream_handle_t *stream, char *name);
<span style="color: #00A000">+static ftdm_status_t handle_status_relay(ftdm_stream_handle_t *stream, char *name);</span>
<span style="color: #00A000">+</span>
static ftdm_status_t extract_span_chan(char *argv[10], int pos, int *span, int *chan);
static ftdm_status_t check_arg_count(int args, int min);
/******************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -111,18 +118,29 @@ ftdm_status_t ftdm_sngss7_handle_cli_cmd(ftdm_stream_handle_t *stream, const cha</span>
                if (!strcasecmp(argv[c], "status")) {
                /**********************************************************************/
<span style="color: #00A000">+                        if (check_arg_count(argc, 3)) goto handle_cli_error_argc;</span>
                        c++;
<span style="color: #A00000">-                        if (!strcasecmp(argv[c], "link")) {</span>
<span style="color: #00A000">+                        if (!strcasecmp(argv[c], "mtp3")) {</span>
<span style="color: #00A000">+                        /******************************************************************/</span>
<span style="color: #00A000">+                                c++;</span>
<span style="color: #00A000">+                                handle_status_mtp3link(stream, argv[c]);</span>
<span style="color: #00A000">+                        /******************************************************************/</span>
<span style="color: #00A000">+                        } else if (!strcasecmp(argv[c], "mtp2")) {</span>
                        /******************************************************************/
                                c++;
<span style="color: #A00000">-                                handle_status_link(stream, argv[c]);</span>
<span style="color: #00A000">+                                handle_status_mtp2link(stream, argv[c]);</span>
                        /******************************************************************/
                        } else if (!strcasecmp(argv[c], "linkset")) {
                        /******************************************************************/
                                c++;
                                handle_status_linkset(stream, argv[c]);
                        /******************************************************************/
<span style="color: #00A000">+                        } else if (!strcasecmp(argv[c], "relay")) {</span>
<span style="color: #00A000">+                        /******************************************************************/</span>
<span style="color: #00A000">+                                c++;</span>
<span style="color: #00A000">+                                handle_status_relay(stream, argv[c]);</span>
<span style="color: #00A000">+                        /******************************************************************/</span>
                        } else if (!strcasecmp(argv[c], "span")) {
                        /******************************************************************/
                                if (check_arg_count(argc, 6)) goto handle_cli_error_argc;
<span style="color: #800080; font-weight: bold">@@ -256,6 +274,10 @@ ftdm_status_t ftdm_sngss7_handle_cli_cmd(ftdm_stream_handle_t *stream, const cha</span>
                                                                                        sts.rx_frm, sts.rx_err, sts.rx_fisu, sts.rx_lssu, sts.rx_msu);
*/
                /**********************************************************************/
<span style="color: #00A000">+                } else if (!strcasecmp(argv[c], "procid")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        handle_show_procId(stream);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                } else {
                /**********************************************************************/
                        stream->write_function(stream, "Unknown \"show\" command\n");
<span style="color: #800080; font-weight: bold">@@ -534,6 +556,44 @@ ftdm_status_t ftdm_sngss7_handle_cli_cmd(ftdm_stream_handle_t *stream, const cha</span>
                /**********************************************************************/
                }
        /**************************************************************************/
<span style="color: #00A000">+        } else if (!strcasecmp(argv[c], "bind")) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+                if (check_arg_count(argc, 2)) goto handle_cli_error_argc;</span>
<span style="color: #00A000">+                c++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(argv[c], "link")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (check_arg_count(argc, 3)) goto handle_cli_error_argc;</span>
<span style="color: #00A000">+                        c++;</span>
<span style="color: #00A000">+                        </span>
<span style="color: #00A000">+                        handle_bind_link(stream, argv[c]);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        stream->write_function(stream, "Unknown \"bind\" command\n");</span>
<span style="color: #00A000">+                        goto handle_cli_error;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } else if (!strcasecmp(argv[c], "unbind")) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+                if (check_arg_count(argc, 2)) goto handle_cli_error_argc;</span>
<span style="color: #00A000">+                c++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(argv[c], "link")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (check_arg_count(argc, 3)) goto handle_cli_error_argc;</span>
<span style="color: #00A000">+                        c++;</span>
<span style="color: #00A000">+                        </span>
<span style="color: #00A000">+                        handle_unbind_link(stream, argv[c]);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        stream->write_function(stream, "Unknown \"bind\" command\n");</span>
<span style="color: #00A000">+                        goto handle_cli_error;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
        } else if (!strcasecmp(argv[c], "activate")) {
        /**************************************************************************/
                if (check_arg_count(argc, 2)) goto handle_cli_error_argc;
<span style="color: #800080; font-weight: bold">@@ -650,6 +710,16 @@ static ftdm_status_t handle_print_usuage(ftdm_stream_handle_t *stream)</span>
}
/******************************************************************************/
<span style="color: #00A000">+static ftdm_status_t handle_show_procId(ftdm_stream_handle_t *stream)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int        procId = sng_get_procId();</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        stream->write_function(stream, "Local ProcId = %d\n", procId);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
static ftdm_status_t handle_set_function_trace(ftdm_stream_handle_t *stream, int on, int level)
{
        stream->write_function(stream, "ftmod_sangoma_ss7 Function Trace was %s, level = %d\n",
<span style="color: #800080; font-weight: bold">@@ -693,7 +763,7 @@ static ftdm_status_t handle_show_free(ftdm_stream_handle_t *stream, int span, in</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        free = 0;
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -756,7 +826,7 @@ static ftdm_status_t handle_show_inuse(ftdm_stream_handle_t *stream, int span, i</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        in_use = 0;
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -826,7 +896,7 @@ static ftdm_status_t handle_show_inreset(ftdm_stream_handle_t *stream, int span,</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        in_reset = 0;
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -848,10 +918,10 @@ static ftdm_status_t handle_show_inreset(ftdm_stream_handle_t *stream, int span,</span>
                        }
                        if ((ftdmchan->physical_span_id == lspan) && (ftdmchan->physical_chan_id == lchan)) {
<span style="color: #A00000">-                                if ((sngss7_test_flag(ss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #A00000">-                                        (sngss7_test_flag(ss7_info, FLAG_RESET_TX)) ||</span>
<span style="color: #A00000">-                                        (sngss7_test_flag(ss7_info, FLAG_GRP_RESET_RX)) ||</span>
<span style="color: #A00000">-                                        (sngss7_test_flag(ss7_info, FLAG_GRP_RESET_TX))) {</span>
<span style="color: #00A000">+                                if ((sngss7_test_ckt_flag(ss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #00A000">+                                        (sngss7_test_ckt_flag(ss7_info, FLAG_RESET_TX)) ||</span>
<span style="color: #00A000">+                                        (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_RESET_RX)) ||</span>
<span style="color: #00A000">+                                        (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_RESET_TX))) {</span>
                                        
                                        if (verbose) {
                                                stream->write_function(stream, "span=%2d|chan=%2d|cic=%4d|in_reset=Y\n",
<span style="color: #800080; font-weight: bold">@@ -862,7 +932,7 @@ static ftdm_status_t handle_show_inreset(ftdm_stream_handle_t *stream, int span,</span>
                
                                        /*increment the count of circuits in reset */
                                        in_reset++;
<span style="color: #A00000">-                                } /* if ((sngss7_test_flag(ss7_info, FLAG_RESET_RX) ... */</span>
<span style="color: #00A000">+                                } /* if ((sngss7_test_ckt_flag(ss7_info, FLAG_RESET_RX) ... */</span>
                        } /* if ( span and chan) */
                } /* if ( cic != 0) */
<span style="color: #800080; font-weight: bold">@@ -885,7 +955,7 @@ static ftdm_status_t handle_show_flags(ftdm_stream_handle_t *stream, int span, i</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
                        ss7_info = (sngss7_chan_data_t *)g_ftdm_sngss7_data.cfg.isupCkt[x].obj;
<span style="color: #800080; font-weight: bold">@@ -913,7 +983,7 @@ static ftdm_status_t handle_show_flags(ftdm_stream_handle_t *stream, int span, i</span>
        
                                for (bit = 0; bit < 33; bit++) {
                                        stream->write_function(stream, "|");
<span style="color: #A00000">-                                        if (ss7_info->flags & ( 0x1 << bit)) {</span>
<span style="color: #00A000">+                                        if (ss7_info->ckt_flags & ( 0x1 << bit)) {</span>
                                                stream->write_function(stream, "%2d=1", bit);
                                        } else {
                                                stream->write_function(stream, "%2d=0", bit);
<span style="color: #800080; font-weight: bold">@@ -941,7 +1011,7 @@ static ftdm_status_t handle_show_blocks(ftdm_stream_handle_t *stream, int span,</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
                        ss7_info = (sngss7_chan_data_t *)g_ftdm_sngss7_data.cfg.isupCkt[x].obj;
<span style="color: #800080; font-weight: bold">@@ -967,37 +1037,37 @@ static ftdm_status_t handle_show_blocks(ftdm_stream_handle_t *stream, int span,</span>
                                                        ftdmchan->physical_chan_id,
                                                        ss7_info->circuit->cic);
<span style="color: #A00000">-                                if((sngss7_test_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX)) || (sngss7_test_flag(ss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
<span style="color: #00A000">+                                if((sngss7_test_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX)) || (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
                                        stream->write_function(stream, "l_mn=Y|");
                                }else {
                                        stream->write_function(stream, "l_mn=N|");
                                }
<span style="color: #A00000">-                                if((sngss7_test_flag(ss7_info, FLAG_CKT_MN_BLOCK_RX)) || (sngss7_test_flag(ss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+                                if((sngss7_test_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_RX)) || (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
                                        stream->write_function(stream, "r_mn=Y|");
                                }else {
                                        stream->write_function(stream, "r_mn=N|");
                                }
<span style="color: #A00000">-                                if(sngss7_test_flag(ss7_info, FLAG_GRP_HW_BLOCK_TX)) {</span>
<span style="color: #00A000">+                                if(sngss7_test_ckt_flag(ss7_info, FLAG_GRP_HW_BLOCK_TX)) {</span>
                                        stream->write_function(stream, "l_hw=Y|");
                                }else {
                                        stream->write_function(stream, "l_hw=N|");
                                }
<span style="color: #A00000">-                                if(sngss7_test_flag(ss7_info, FLAG_GRP_HW_BLOCK_RX)) {</span>
<span style="color: #00A000">+                                if(sngss7_test_ckt_flag(ss7_info, FLAG_GRP_HW_BLOCK_RX)) {</span>
                                        stream->write_function(stream, "r_hw=Y|");
                                }else {
                                        stream->write_function(stream, "r_hw=N|");
                                }
<span style="color: #A00000">-                                if(sngss7_test_flag(ss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
<span style="color: #00A000">+                                if(sngss7_test_ckt_flag(ss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
                                        stream->write_function(stream, "l_mngmt=Y|");
                                }else {
                                        stream->write_function(stream, "l_mngmt=N|");
                                }
<span style="color: #A00000">-                                if(sngss7_test_flag(ss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
<span style="color: #00A000">+                                if(sngss7_test_ckt_flag(ss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
                                        stream->write_function(stream, "l_ucic=Y|");
                                }else {
                                        stream->write_function(stream, "l_ucic=N|");
<span style="color: #800080; font-weight: bold">@@ -1026,7 +1096,7 @@ static ftdm_status_t handle_show_status(ftdm_stream_handle_t *stream, int span,</span>
        ftdm_signaling_status_t                sigstatus = FTDM_SIG_STATE_DOWN;
        sng_isup_ckt_t                                *ckt;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                        /* extract the circuit to make it easier to work with */
                        ckt = &g_ftdm_sngss7_data.cfg.isupCkt[x];
<span style="color: #800080; font-weight: bold">@@ -1071,43 +1141,37 @@ static ftdm_status_t handle_show_status(ftdm_stream_handle_t *stream, int span,</span>
                                                                                                        ftdm_signaling_status2str(sigstatus),
                                                                                                        ftdm_channel_state2str(ftdmchan->state));
        
<span style="color: #A00000">-                                        if((sngss7_test_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX)) || (sngss7_test_flag(ss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
<span style="color: #00A000">+                                        if((sngss7_test_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX)) || (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
                                                stream->write_function(stream, "l_mn=Y|");
                                        }else {
                                                stream->write_function(stream, "l_mn=N|");
                                        }
        
<span style="color: #A00000">-                                        if((sngss7_test_flag(ss7_info, FLAG_CKT_MN_BLOCK_RX)) || (sngss7_test_flag(ss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+                                        if((sngss7_test_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_RX)) || (sngss7_test_ckt_flag(ss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
                                                stream->write_function(stream, "r_mn=Y|");
                                        }else {
                                                stream->write_function(stream, "r_mn=N|");
                                        }
        
<span style="color: #A00000">-                                        if(sngss7_test_flag(ss7_info, FLAG_GRP_HW_BLOCK_TX)) {</span>
<span style="color: #00A000">+                                        if(sngss7_test_ckt_flag(ss7_info, FLAG_GRP_HW_BLOCK_TX)) {</span>
                                                stream->write_function(stream, "l_hw=Y|");
                                        }else {
                                                stream->write_function(stream, "l_hw=N|");
                                        }
        
<span style="color: #A00000">-                                        if(sngss7_test_flag(ss7_info, FLAG_GRP_HW_BLOCK_RX)) {</span>
<span style="color: #00A000">+                                        if(sngss7_test_ckt_flag(ss7_info, FLAG_GRP_HW_BLOCK_RX)) {</span>
                                                stream->write_function(stream, "r_hw=Y|");
                                        }else {
                                                stream->write_function(stream, "r_hw=N|");
                                        }
<span style="color: #A00000">-        </span>
<span style="color: #A00000">-                                        if(sngss7_test_flag(ss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
<span style="color: #A00000">-                                                stream->write_function(stream, "l_mngmt=Y|");</span>
<span style="color: #A00000">-                                        }else {</span>
<span style="color: #A00000">-                                                stream->write_function(stream, "l_mngmt=N|");</span>
<span style="color: #A00000">-                                        }</span>
<span style="color: #A00000">-        </span>
<span style="color: #A00000">-                                        if(sngss7_test_flag(ss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
<span style="color: #A00000">-                                                stream->write_function(stream, "l_ucic=Y|");</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                                        if(sngss7_test_ckt_flag(ss7_info, FLAG_RELAY_DOWN)) {</span>
<span style="color: #00A000">+                                                stream->write_function(stream, "relay=Y|");</span>
                                        }else {
<span style="color: #A00000">-                                                stream->write_function(stream, "l_ucic=N|");</span>
<span style="color: #A00000">-                                        }                                </span>
<span style="color: #00A000">+                                                stream->write_function(stream, "relay=N|");</span>
<span style="color: #00A000">+                                        }                </span>
        
<span style="color: #A00000">-                                        stream->write_function(stream, "flags=0x%X",ss7_info->flags);</span>
<span style="color: #00A000">+                                        stream->write_function(stream, "flags=0x%X",ss7_info->ckt_flags);</span>
        
                                        stream->write_function(stream, "\n");
                                } /* if ( hole, sig, voice) */
<span style="color: #800080; font-weight: bold">@@ -1127,7 +1191,7 @@ static ftdm_status_t handle_tx_blo(ftdm_stream_handle_t *stream, int span, int c</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
                        ss7_info = (sngss7_chan_data_t *)g_ftdm_sngss7_data.cfg.isupCkt[x].obj;
<span style="color: #800080; font-weight: bold">@@ -1162,7 +1226,7 @@ static ftdm_status_t handle_tx_blo(ftdm_stream_handle_t *stream, int span, int c</span>
                                        continue;
                                } else {
                                        /* throw the ckt block flag */
<span style="color: #A00000">-                                        sngss7_set_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX);</span>
<span style="color: #00A000">+                                        sngss7_set_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX);</span>
                                        /* set the channel to suspended state */
                                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1193,7 +1257,7 @@ static ftdm_status_t handle_tx_ubl(ftdm_stream_handle_t *stream, int span, int c</span>
        int                                 lspan;
        int                                 lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
                        ss7_info = (sngss7_chan_data_t *)g_ftdm_sngss7_data.cfg.isupCkt[x].obj;
<span style="color: #800080; font-weight: bold">@@ -1228,10 +1292,10 @@ static ftdm_status_t handle_tx_ubl(ftdm_stream_handle_t *stream, int span, int c</span>
                                        continue;
                                } else {
                                        /* throw the ckt block flag */
<span style="color: #A00000">-                                        sngss7_set_flag(ss7_info, FLAG_CKT_MN_UNBLK_TX);</span>
<span style="color: #00A000">+                                        sngss7_set_ckt_flag(ss7_info, FLAG_CKT_MN_UNBLK_TX);</span>
                                        /* clear the block flag */
<span style="color: #A00000">-                                        sngss7_clear_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX);</span>
<span style="color: #00A000">+                                        sngss7_clear_ckt_flag(ss7_info, FLAG_CKT_MN_BLOCK_TX);</span>
                                        /* set the channel to suspended state */
                                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1254,18 +1318,18 @@ static ftdm_status_t handle_tx_ubl(ftdm_stream_handle_t *stream, int span, int c</span>
}
/******************************************************************************/
<span style="color: #A00000">-static ftdm_status_t handle_status_link(ftdm_stream_handle_t *stream, char *name)</span>
<span style="color: #00A000">+static ftdm_status_t handle_status_mtp3link(ftdm_stream_handle_t *stream, char *name)</span>
{
        int                 x = 0;
        SnMngmt                sta;
        
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the status request */
<span style="color: #A00000">-                        if (ftmod_ss7_mtplink_sta(x, &sta)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp3link_sta(x, &sta)) {</span>
                                stream->write_function(stream, "Failed to read link=%s status\n", name);
                                return FTDM_FAIL;
                        }
<span style="color: #800080; font-weight: bold">@@ -1273,9 +1337,9 @@ static ftdm_status_t handle_status_link(ftdm_stream_handle_t *stream, char *name</span>
                        /* print the results */
                        stream->write_function(stream, "%s|span=%d|chan=%d|sap=%d|state=%s|l_blk=%s|r_blk=%s|l_inhbt=%s|r_inhbt=%s\n",
                                                name,
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.mtpLink[x].mtp1.span,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.mtpLink[x].mtp1.chan,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.mtpLink[x].id,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp1Link[x].span,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp1Link[x].chan,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp3Link[x].id,</span>
                                                DECODE_LSN_LINK_STATUS(sta.t.ssta.s.snDLSAP.state),
                                                (sta.t.ssta.s.snDLSAP.locBlkd) ? "Y":"N",
                                                (sta.t.ssta.s.snDLSAP.remBlkd) ? "Y":"N",
<span style="color: #800080; font-weight: bold">@@ -1296,6 +1360,50 @@ success:</span>
}
/******************************************************************************/
<span style="color: #00A000">+static ftdm_status_t handle_status_mtp2link(ftdm_stream_handle_t *stream, char *name)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int                 x = 0;</span>
<span style="color: #00A000">+        SdMngmt                sta;</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        /* find the link request by it's name */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp2Link[x].name, name)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* send the status request */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_mtp2link_sta(x, &sta)) {</span>
<span style="color: #00A000">+                                stream->write_function(stream, "Failed to read link=%s status\n", name);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* print the results */</span>
<span style="color: #00A000">+                        stream->write_function(stream, "%s|span=%d|chan=%d|sap=%d|state=%s|outsFrm=%d|drpdFrm=%d|lclStatus=%s|rmtStatus=%s|fsn=%d|bsn=%d\n",</span>
<span style="color: #00A000">+                                                name,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp1Link[x].span,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp1Link[x].chan,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.mtp2Link[x].id,</span>
<span style="color: #00A000">+                                                DECODE_LSD_LINK_STATUS(sta.t.ssta.s.sdDLSAP.hlSt),</span>
<span style="color: #00A000">+                                                sta.t.ssta.s.sdDLSAP.psOutsFrm,</span>
<span style="color: #00A000">+                                                sta.t.ssta.s.sdDLSAP.cntMaDrop,</span>
<span style="color: #00A000">+                                                (sta.t.ssta.s.sdDLSAP.lclBsy) ? "Y":"N",</span>
<span style="color: #00A000">+                                                (sta.t.ssta.s.sdDLSAP.remBsy) ? "Y":"N",</span>
<span style="color: #00A000">+                                                sta.t.ssta.s.sdDLSAP.fsn,</span>
<span style="color: #00A000">+                                                sta.t.ssta.s.sdDLSAP.bsn);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        goto success;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                </span>
<span style="color: #00A000">+                /* move to the next link */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        stream->write_function(stream, "Failed to find link=\"%s\"\n", name);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+success:</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
static ftdm_status_t handle_status_linkset(ftdm_stream_handle_t *stream, char *name)
{
        int                 x = 0;
<span style="color: #800080; font-weight: bold">@@ -1338,17 +1446,17 @@ static ftdm_status_t handle_set_inhibit(ftdm_stream_handle_t *stream, char *name</span>
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the inhibit request */
<span style="color: #A00000">-                        if (ftmod_ss7_inhibit_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_inhibit_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed to inhibit link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1370,17 +1478,17 @@ static ftdm_status_t handle_set_uninhibit(ftdm_stream_handle_t *stream, char *na</span>
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the uninhibit request */
<span style="color: #A00000">-                        if (ftmod_ss7_uninhibit_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_uninhibit_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed to uninhibit link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1404,7 +1512,7 @@ static ftdm_status_t handle_tx_rsc(ftdm_stream_handle_t *stream, int span, int c</span>
        int                                         lspan;
        int                                         lchan;
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
                        sngss7_info = (sngss7_chan_data_t *)g_ftdm_sngss7_data.cfg.isupCkt[x].obj;
<span style="color: #800080; font-weight: bold">@@ -1429,7 +1537,7 @@ static ftdm_status_t handle_tx_rsc(ftdm_stream_handle_t *stream, int span, int c</span>
                                ftdm_mutex_lock(ftdmchan->mutex);
                                /* throw the reset flag */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
                                switch (ftdmchan->state) {
                                /**************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -1476,7 +1584,7 @@ static ftdm_status_t handle_tx_grs(ftdm_stream_handle_t *stream, int span, int c</span>
                return FTDM_SUCCESS;
        }
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1500,9 +1608,9 @@ static ftdm_status_t handle_tx_grs(ftdm_stream_handle_t *stream, int span, int c</span>
                                        continue;
                                } else {
                                        /* throw the grp reset flag */
<span style="color: #A00000">-                                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
<span style="color: #00A000">+                                        sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
                                        if (ftdmchan->physical_chan_id == chan) {
<span style="color: #A00000">-                                                sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_BASE);</span>
<span style="color: #00A000">+                                                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_BASE);</span>
                                                sngss7_span->tx_grs.circuit = sngss7_info->circuit->id;
                                                sngss7_span->tx_grs.range = range-1;
                                        }
<span style="color: #800080; font-weight: bold">@@ -1523,7 +1631,7 @@ static ftdm_status_t handle_tx_grs(ftdm_stream_handle_t *stream, int span, int c</span>
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x]id != 0) */
        
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1565,7 +1673,7 @@ static ftdm_status_t handle_tx_cgb(ftdm_stream_handle_t *stream, int span, int c</span>
                return FTDM_SUCCESS;
        }
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1582,7 +1690,7 @@ static ftdm_status_t handle_tx_cgb(ftdm_stream_handle_t *stream, int span, int c</span>
                                ftdm_mutex_lock(ftdmchan->mutex);
                                /* throw the grp maint. block flag */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX);</span>
                                /* bring the sig status down */
                                sigev.chan_id = ftdmchan->chan_id;
<span style="color: #800080; font-weight: bold">@@ -1622,7 +1730,7 @@ static ftdm_status_t handle_tx_cgb(ftdm_stream_handle_t *stream, int span, int c</span>
        /* send the circuit group block */
        ft_to_sngss7_cgb(main_chan);
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1665,7 +1773,7 @@ static ftdm_status_t handle_tx_cgu(ftdm_stream_handle_t *stream, int span, int c</span>
                return FTDM_SUCCESS;
        }
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1682,7 +1790,7 @@ static ftdm_status_t handle_tx_cgu(ftdm_stream_handle_t *stream, int span, int c</span>
                                ftdm_mutex_lock(ftdmchan->mutex);
                                /* throw the grp maint. block flag */
<span style="color: #A00000">-                                sngss7_clear_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX);</span>
<span style="color: #00A000">+                                sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX);</span>
                                /* bring the sig status up */
                                sigev.chan_id = ftdmchan->chan_id;
<span style="color: #800080; font-weight: bold">@@ -1722,7 +1830,7 @@ static ftdm_status_t handle_tx_cgu(ftdm_stream_handle_t *stream, int span, int c</span>
        /* send the circuit group block */
        ft_to_sngss7_cgu(main_chan);
<span style="color: #A00000">-        x=1;</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {
                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {
<span style="color: #800080; font-weight: bold">@@ -1746,23 +1854,85 @@ static ftdm_status_t handle_tx_cgu(ftdm_stream_handle_t *stream, int span, int c</span>
}
/******************************************************************************/
<span style="color: #00A000">+static ftdm_status_t handle_bind_link(ftdm_stream_handle_t *stream, char *name)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int                x = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* find the link request by it's name */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* send the uninhibit request */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_bind_mtp3link(g_ftdm_sngss7_data.cfg.mtp3Link[x].mtp2Id)) {</span>
<span style="color: #00A000">+                                stream->write_function(stream, "Failed to bind link=%s\n", name);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* print the new status of the link */</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
<span style="color: #00A000">+                        goto success;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+ </span>
<span style="color: #00A000">+                /* move to the next link */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        stream->write_function(stream, "Could not find link=%s\n", name);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+success:</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static ftdm_status_t handle_unbind_link(ftdm_stream_handle_t *stream, char *name)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int                x = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* find the link request by it's name */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* send the uninhibit request */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_unbind_mtp3link(g_ftdm_sngss7_data.cfg.mtp3Link[x].mtp2Id)) {</span>
<span style="color: #00A000">+                                stream->write_function(stream, "Failed to bind link=%s\n", name);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* print the new status of the link */</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
<span style="color: #00A000">+                        goto success;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+ </span>
<span style="color: #00A000">+                /* move to the next link */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        stream->write_function(stream, "Could not find link=%s\n", name);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+success:</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
static ftdm_status_t handle_activate_link(ftdm_stream_handle_t *stream, char *name)
{
        int                x = 0;
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the uninhibit request */
<span style="color: #A00000">-                        if (ftmod_ss7_activate_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_activate_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed to activate link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1783,17 +1953,17 @@ static ftdm_status_t handle_deactivate_link(ftdm_stream_handle_t *stream, char *</span>
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the deactivate request */
<span style="color: #A00000">-                        if (ftmod_ss7_deactivate2_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_deactivate2_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed to deactivate link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1877,17 +2047,17 @@ static ftdm_status_t handle_tx_lpo(ftdm_stream_handle_t *stream, char *name)</span>
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the uninhibit request */
<span style="color: #A00000">-                        if (ftmod_ss7_lpo_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_lpo_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed set LPO link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1908,17 +2078,17 @@ static ftdm_status_t handle_tx_lpr(ftdm_stream_handle_t *stream, char *name)</span>
        /* find the link request by it's name */
        x = 1;
<span style="color: #A00000">-        while(g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpLink[x].name, name)) {</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtp3Link[x].name, name)) {</span>
                        /* send the uninhibit request */
<span style="color: #A00000">-                        if (ftmod_ss7_lpr_mtplink(x)) {</span>
<span style="color: #00A000">+                        if (ftmod_ss7_lpr_mtp3link(x)) {</span>
                                stream->write_function(stream, "Failed set LPR link=%s\n", name);
                                return FTDM_FAIL;
                        }
                        /* print the new status of the link */
<span style="color: #A00000">-                        handle_status_link(stream, &name[0]);</span>
<span style="color: #00A000">+                        handle_status_mtp3link(stream, &name[0]);</span>
                        goto success;
                }
<span style="color: #800080; font-weight: bold">@@ -1933,6 +2103,47 @@ success:</span>
}
/******************************************************************************/
<span style="color: #00A000">+static ftdm_status_t handle_status_relay(ftdm_stream_handle_t *stream, char *name)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        RyMngmt        sta;</span>
<span style="color: #00A000">+        int                x = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        memset(&sta, 0x0, sizeof(sta));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* find the channel request by it's name */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        while(g_ftdm_sngss7_data.cfg.relay[x].id != 0) {</span>
<span style="color: #00A000">+                if (!strcasecmp(g_ftdm_sngss7_data.cfg.relay[x].name, name)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        if (ftmod_ss7_relay_status(g_ftdm_sngss7_data.cfg.relay[x].id, &sta)) {</span>
<span style="color: #00A000">+                                stream->write_function(stream, "Failed to read relay =%s status\n", name);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* print the results */</span>
<span style="color: #00A000">+                        stream->write_function(stream, "%s|sap=%d|type=%d|port=%d|hostname=%s|procId=%d|status=%s\n",</span>
<span style="color: #00A000">+                                                name,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.relay[x].id,        </span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.relay[x].type,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.relay[x].port,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.relay[x].hostname,</span>
<span style="color: #00A000">+                                                g_ftdm_sngss7_data.cfg.relay[x].procId,</span>
<span style="color: #00A000">+                                                DECODE_LRY_CHAN_STATUS(sta.t.ssta.rySta.cStatus));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        goto success;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                </span>
<span style="color: #00A000">+                /* move to the next link */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        } /* g_ftdm_sngss7_data.cfg.relay[x].id */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+success:</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
static ftdm_status_t extract_span_chan(char *argv[10], int pos, int *span, int *chan)
{
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cntrl.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cntrl.c</span>
<span style="color: #000080; font-weight: bold">index 87733dd..c1b18e5 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cntrl.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cntrl.c</span>
<span style="color: #800080; font-weight: bold">@@ -48,19 +48,31 @@ static int ftmod_ss7_enable_isap(int suId);</span>
static int ftmod_ss7_enable_nsap(int suId);
static int ftmod_ss7_enable_mtpLinkSet(int lnkSetId);
<span style="color: #A00000">-int ftmod_ss7_inhibit_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_uninhibit_mtplink(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_inhibit_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_uninhibit_mtp3link(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_activate_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_deactivate_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_deactivate2_mtplink(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_bind_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_unbind_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_activate_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate2_mtp3link(uint32_t id);</span>
int ftmod_ss7_activate_mtplinkSet(uint32_t id);
int ftmod_ss7_deactivate_mtplinkSet(uint32_t id);
int ftmod_ss7_deactivate2_mtplinkSet(uint32_t id);
<span style="color: #A00000">-int ftmod_ss7_lpo_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_lpr_mtplink(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_lpo_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_lpr_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_isup(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp3(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp2(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_relay(void);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp3Link(uint32_t procId);</span>
<span style="color: #00A000">+int ftmod_ss7_enable_grp_mtp3Link(uint32_t procId);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp2Link(uint32_t procId);</span>
/******************************************************************************/
/* FUNCTIONS ******************************************************************/
<span style="color: #800080; font-weight: bold">@@ -71,7 +83,7 @@ int ft_to_sngss7_activate_all(void)</span>
        x = 1;
        while (g_ftdm_sngss7_data.cfg.isap[x].id != 0) {
                /* check if this link has already been actived */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.isap[x].flags & ACTIVE)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.isap[x].flags & SNGSS7_ACTIVE)) {</span>
                        if (ftmod_ss7_enable_isap(x)) {        
                                SS7_CRITICAL("ISAP %d Enable: NOT OK\n", x);
<span style="color: #800080; font-weight: bold">@@ -80,9 +92,9 @@ int ft_to_sngss7_activate_all(void)</span>
                                SS7_INFO("ISAP %d Enable: OK\n", x);
                        }
<span style="color: #A00000">-                        /* set the ACTIVE flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.isap[x].flags |= ACTIVE;</span>
<span style="color: #A00000">-                } /* if !ACTIVE */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_ACTIVE flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isap[x].flags |= SNGSS7_ACTIVE;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_ACTIVE */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.isap[x].id != 0) */
<span style="color: #800080; font-weight: bold">@@ -90,7 +102,7 @@ int ft_to_sngss7_activate_all(void)</span>
        x = 1;
        while (g_ftdm_sngss7_data.cfg.nsap[x].id != 0) {
                /* check if this link has already been actived */
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.nsap[x].flags & ACTIVE)) {</span>
<span style="color: #00A000">+                if (!(g_ftdm_sngss7_data.cfg.nsap[x].flags & SNGSS7_ACTIVE)) {</span>
                        if (ftmod_ss7_enable_nsap(x)) {        
                                SS7_CRITICAL("NSAP %d Enable: NOT OK\n", x);
<span style="color: #800080; font-weight: bold">@@ -99,31 +111,33 @@ int ft_to_sngss7_activate_all(void)</span>
                                SS7_INFO("NSAP %d Enable: OK\n", x);
                        }
<span style="color: #A00000">-                        /* set the ACTIVE flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.nsap[x].flags |= ACTIVE;</span>
<span style="color: #A00000">-                } /* if !ACTIVE */</span>
<span style="color: #00A000">+                        /* set the SNGSS7_ACTIVE flag */</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.nsap[x].flags |= SNGSS7_ACTIVE;</span>
<span style="color: #00A000">+                } /* if !SNGSS7_ACTIVE */</span>
                
                x++;
        } /* while (g_ftdm_sngss7_data.cfg.nsap[x].id != 0) */
<span style="color: #A00000">-        x = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) {</span>
<span style="color: #A00000">-                /* check if this link has already been actived */</span>
<span style="color: #A00000">-                if (!(g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags & ACTIVE)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        if (ftmod_ss7_enable_mtpLinkSet(x)) {        </span>
<span style="color: #A00000">-                                SS7_CRITICAL("LinkSet \"%s\" Enable: NOT OK\n", g_ftdm_sngss7_data.cfg.mtpLinkSet[x].name);</span>
<span style="color: #A00000">-                                return 1;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_INFO("LinkSet \"%s\" Enable: OK\n", g_ftdm_sngss7_data.cfg.mtpLinkSet[x].name);</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* set the ACTIVE flag */</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags |= ACTIVE;</span>
<span style="color: #A00000">-                } /* if !ACTIVE */</span>
<span style="color: #A00000">-                </span>
<span style="color: #A00000">-                x++;</span>
<span style="color: #A00000">-        } /* while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtpRoute[1].id != 0) {</span>
<span style="color: #00A000">+                x = 1;</span>
<span style="color: #00A000">+                while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) {</span>
<span style="color: #00A000">+                        /* check if this link has already been actived */</span>
<span style="color: #00A000">+                        if (!(g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags & SNGSS7_ACTIVE)) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                                if (ftmod_ss7_enable_mtpLinkSet(x)) {        </span>
<span style="color: #00A000">+                                        SS7_CRITICAL("LinkSet \"%s\" Enable: NOT OK\n", g_ftdm_sngss7_data.cfg.mtpLinkSet[x].name);</span>
<span style="color: #00A000">+                                        return 1;</span>
<span style="color: #00A000">+                                } else {</span>
<span style="color: #00A000">+                                        SS7_INFO("LinkSet \"%s\" Enable: OK\n", g_ftdm_sngss7_data.cfg.mtpLinkSet[x].name);</span>
<span style="color: #00A000">+                                }</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                                /* set the SNGSS7_ACTIVE flag */</span>
<span style="color: #00A000">+                                g_ftdm_sngss7_data.cfg.mtpLinkSet[x].flags |= SNGSS7_ACTIVE;</span>
<span style="color: #00A000">+                        } /* if !SNGSS7_ACTIVE */</span>
<span style="color: #00A000">+                        </span>
<span style="color: #00A000">+                        x++;</span>
<span style="color: #00A000">+                } /* while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) */</span>
<span style="color: #00A000">+        }</span>
        return 0;
}
<span style="color: #800080; font-weight: bold">@@ -223,7 +237,7 @@ static int ftmod_ss7_enable_mtpLinkSet(int lnkSetId)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_inhibit_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_inhibit_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -253,7 +267,7 @@ int ftmod_ss7_inhibit_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_uninhibit_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_uninhibit_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -283,7 +297,67 @@ int ftmod_ss7_uninhibit_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_activate_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_bind_mtp3link(uint32_t id)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SnMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SnMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSN;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STDLSAP;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ABND;                /* Activate */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp3(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_unbind_mtp3link(uint32_t id)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SnMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SnMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSN;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STDLSAP;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = AUBND_DIS;                /* unbind and disable */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp3(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_activate_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -304,7 +378,7 @@ int ftmod_ss7_activate_mtplink(uint32_t id)</span>
        cntrl.hdr.entId.ent                        = ENTSN;
        cntrl.hdr.entId.inst                = S_INST;
        cntrl.hdr.elmId.elmnt                = STDLSAP;
<span style="color: #A00000">-        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        cntrl.t.cntrl.action                = AENA;                /* Activate */
        cntrl.t.cntrl.subAction                = SAELMNT;        /* specificed element */
<span style="color: #800080; font-weight: bold">@@ -313,7 +387,7 @@ int ftmod_ss7_activate_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_deactivate_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -334,7 +408,7 @@ int ftmod_ss7_deactivate_mtplink(uint32_t id)</span>
        cntrl.hdr.entId.ent                        = ENTSN;
        cntrl.hdr.entId.inst                = S_INST;
        cntrl.hdr.elmId.elmnt                = STDLSAP;
<span style="color: #A00000">-        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        cntrl.t.cntrl.action                = ADISIMM;        /* Deactivate */
        cntrl.t.cntrl.subAction                = SAELMNT;        /* specificed element */
<span style="color: #800080; font-weight: bold">@@ -343,7 +417,7 @@ int ftmod_ss7_deactivate_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_deactivate2_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate2_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -364,7 +438,7 @@ int ftmod_ss7_deactivate2_mtplink(uint32_t id)</span>
        cntrl.hdr.entId.ent                        = ENTSN;
        cntrl.hdr.entId.inst                = S_INST;
        cntrl.hdr.elmId.elmnt                = STDLSAP;
<span style="color: #A00000">-        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        cntrl.t.cntrl.action                = ADISIMM_L2;        /* Deactivate...layer 2 only */
        cntrl.t.cntrl.subAction                = SAELMNT;                /* specificed element */
<span style="color: #800080; font-weight: bold">@@ -463,7 +537,7 @@ int ftmod_ss7_deactivate2_mtplinkSet(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_lpo_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_lpo_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -484,7 +558,7 @@ int ftmod_ss7_lpo_mtplink(uint32_t id)</span>
        cntrl.hdr.entId.ent                        = ENTSN;
        cntrl.hdr.entId.inst                = S_INST;
        cntrl.hdr.elmId.elmnt                = STDLSAP;
<span style="color: #A00000">-        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        cntrl.t.cntrl.action                = ACTION_LPO;        /* Activate */
        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */
<span style="color: #800080; font-weight: bold">@@ -493,7 +567,7 @@ int ftmod_ss7_lpo_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #A00000">-int ftmod_ss7_lpr_mtplink(uint32_t id)</span>
<span style="color: #00A000">+int ftmod_ss7_lpr_mtp3link(uint32_t id)</span>
{
        SnMngmt cntrl;
        Pst pst;
<span style="color: #800080; font-weight: bold">@@ -514,7 +588,7 @@ int ftmod_ss7_lpr_mtplink(uint32_t id)</span>
        cntrl.hdr.entId.ent                        = ENTSN;
        cntrl.hdr.entId.inst                = S_INST;
        cntrl.hdr.elmId.elmnt                = STDLSAP;
<span style="color: #A00000">-        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        cntrl.t.cntrl.action                = ACTION_LPR;        /* Activate */
        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */
<span style="color: #800080; font-weight: bold">@@ -523,6 +597,216 @@ int ftmod_ss7_lpr_mtplink(uint32_t id)</span>
}
/******************************************************************************/
<span style="color: #00A000">+int ftmod_ss7_shutdown_isup(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SiMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSI;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SiMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;         /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSI;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGEN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ASHUTDOWN;        /* shutdown */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;                /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_isup(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp3(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SnMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SnMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSN;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGEN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ASHUTDOWN;        /* Activate */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp3(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp2(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SdMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSD;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SdMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSD;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGEN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ASHUTDOWN;        /* Activate */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp2(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_relay(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        RyMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTRY;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(RyMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTRY;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGEN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ASHUTDOWN;        /* Activate */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAELMNT;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_relay(&pst, &cntrl));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp3Link(uint32_t procId)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SnMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SnMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;                        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSN;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGRDLSAP;                /* group DLSAP */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.ctlType.groupKey.dstProcId = procId;        /* all SAPS to this ProcId */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = AUBND_DIS;                /* disable and unbind */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAGR_DSTPROCID;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp3(&pst, &cntrl));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_enable_grp_mtp3Link(uint32_t procId)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SnMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSN;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(SnMngmt));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;                        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSN;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGRDLSAP;                /* group DLSAP */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.ctlType.groupKey.dstProcId = procId;        /* all SAPS to this ProcId */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = ABND_ENA;                        /* bind and enable */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAGR_DSTPROCID;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp3(&pst, &cntrl));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp2Link(uint32_t procId)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SdMngmt cntrl;</span>
<span style="color: #00A000">+        Pst pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSD;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control structure */</span>
<span style="color: #00A000">+        memset(&cntrl, 0x0, sizeof(cntrl));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the control header */</span>
<span style="color: #00A000">+        smHdrInit(&cntrl.hdr);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.hdr.msgType                        = TCNTRL;                        /* this is a control request */</span>
<span style="color: #00A000">+        cntrl.hdr.entId.ent                        = ENTSD;</span>
<span style="color: #00A000">+        cntrl.hdr.entId.inst                = S_INST;</span>
<span style="color: #00A000">+        cntrl.hdr.elmId.elmnt                = STGRNSAP;                        /* group NSAP */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.par.dstProcId = procId;                        /* all SAPS to this ProcId */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        cntrl.t.cntrl.action                = AUBND_DIS;                /* disable and unbind */</span>
<span style="color: #00A000">+        cntrl.t.cntrl.subAction                = SAGR_DSTPROCID;                        /* specificed element */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return (sng_cntrl_mtp2(&pst, &cntrl));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+}</span>
/******************************************************************************/
/* For Emacs:
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_handle.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_handle.c</span>
<span style="color: #000080; font-weight: bold">index dcfb7f7..3a6fca7 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_handle.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_handle.c</span>
<span style="color: #800080; font-weight: bold">@@ -99,21 +99,21 @@ ftdm_status_t handle_con_ind(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        /* lock the channel */
        ftdm_mutex_lock(ftdmchan->mutex);
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info, FLAG_GLARE)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE)) {</span>
                SS7_INFO_CHAN(ftdmchan,"[CIC:%d]Rx IAM (glare)\n", sngss7_info->circuit->cic);
        } else {
                SS7_INFO_CHAN(ftdmchan,"[CIC:%d]Rx IAM\n", sngss7_info->circuit->cic);
        }
        /* check if the circuit has a remote block */
<span style="color: #A00000">-        if ((sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+        if ((sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
                /* as per Q.764, 2.8.2.3 xiv ... remove the block from this channel */
<span style="color: #A00000">-                sngss7_clear_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
<span style="color: #A00000">-                sngss7_clear_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
<span style="color: #A00000">-                sngss7_clear_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
<span style="color: #00A000">+                sngss7_clear_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
<span style="color: #00A000">+                sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
<span style="color: #00A000">+                sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
                /* KONRAD FIX ME : check in case there is a ckt and grp block */
        }
<span style="color: #800080; font-weight: bold">@@ -134,7 +134,7 @@ ftdm_status_t handle_con_ind(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                                                ftdmchan->physical_chan_id);
                         /* set the flag to indicate this hangup is started from the local side */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_LOCAL_REL);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_LOCAL_REL);</span>
                        ftdmchan->caller_data.hangup_cause = 41;
<span style="color: #800080; font-weight: bold">@@ -253,26 +253,26 @@ handle_glare:</span>
                sngss7_info->glare.circuit = circuit;
                memcpy(&sngss7_info->glare.iam, siConEvnt, sizeof(*siConEvnt));
<span style="color: #A00000">-                if (!(sngss7_test_flag(sngss7_info, FLAG_GLARE))) {</span>
<span style="color: #00A000">+                if (!(sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE))) {</span>
                        /* glare, throw the flag */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_GLARE);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_GLARE);</span>
                
                        /* setup the hangup cause */
                        ftdmchan->caller_data.hangup_cause = 34;        /* Circuit Congrestion */
                
                        /* this is a remote hangup request */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_REMOTE_REL);</span>
                
                        /* move the state of the channel to Terminating to end the call */
                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_TERMINATING);
<span style="color: #A00000">-                } /* if (!(sngss7_test_flag(sngss7_info, FLAG_GLARE))) */</span>
<span style="color: #00A000">+                } /* if (!(sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE))) */</span>
                break;
        /**************************************************************************/
        default:        /* should not have gotten an IAM while in this state */
                SS7_ERROR_CHAN(ftdmchan, "Got IAM on channel in invalid state(%s)...reset!\n", ftdm_channel_state2str (ftdmchan->state));
                /* reset the cic */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
                /* move the state of the channel to RESTART to force a reset */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_RESTART);
<span style="color: #800080; font-weight: bold">@@ -341,7 +341,7 @@ ftdm_status_t handle_con_sta(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                                                                        ftdm_channel_state2str (ftdmchan->state));
                        /* reset the cic */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
                        /* go to RESTART */
                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_RESTART);
<span style="color: #800080; font-weight: bold">@@ -545,7 +545,7 @@ ftdm_status_t handle_con_cfm(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                SS7_INFO_CHAN(ftdmchan,"[CIC:%d]Rx ANM/CON\n", sngss7_info->circuit->cic);
                /* throw the TX reset flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
                /* go to RESTART */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_RESTART);
<span style="color: #800080; font-weight: bold">@@ -597,7 +597,7 @@ ftdm_status_t handle_rel_ind(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                }
                /* this is a remote hangup request */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_REMOTE_REL);</span>
ftdm_channel_command(ftdmchan, FTDM_COMMAND_DISABLE_LOOP, NULL);
                /* move the state of the channel to CANCEL to end the call */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_TERMINATING);
<span style="color: #800080; font-weight: bold">@@ -618,7 +618,7 @@ ftdm_channel_command(ftdmchan, FTDM_COMMAND_DISABLE_LOOP, NULL);</span>
                }
                /* this is a remote hangup request */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_REMOTE_REL);</span>
                /* move the state of the channel to TERMINATING to end the call */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_TERMINATING);
<span style="color: #800080; font-weight: bold">@@ -631,7 +631,7 @@ ftdm_channel_command(ftdmchan, FTDM_COMMAND_DISABLE_LOOP, NULL);</span>
                ftdm_channel_command(ftdmchan, FTDM_COMMAND_DISABLE_LOOP, NULL);
                /* since we need to acknowledge the hang up set the flag for remote release */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_REMOTE_REL);</span>
                /* go to hangup complete to send the RLC */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_HANGUP_COMPLETE);
<span style="color: #800080; font-weight: bold">@@ -645,7 +645,7 @@ ftdm_channel_command(ftdmchan, FTDM_COMMAND_DISABLE_LOOP, NULL);</span>
        default:
                /* throw the reset flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_RESET_RX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_RX);</span>
                /* set the state to RESTART */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_RESTART);
<span style="color: #800080; font-weight: bold">@@ -1134,13 +1134,13 @@ ftdm_status_t handle_reattempt(uint32_t suInstId, uint32_t spInstId, uint32_t ci</span>
        /* lock the channel */
        ftdm_mutex_lock(ftdmchan->mutex);
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info, FLAG_GLARE)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE)) {</span>
                /* the glare flag is already up so it was caught ... do nothing */
                SS7_DEBUG_CHAN(ftdmchan, "Glare flag is already up...nothing to do!%s\n", " ");
        } else {
                SS7_DEBUG_CHAN(ftdmchan, "Glare flag is not up yet...indicating glare from reattempt!%s\n", " ");
                /* glare, throw the flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_GLARE);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_GLARE);</span>
                /* clear any existing glare data from the channel */
                memset(&sngss7_info->glare, 0x0, sizeof(sngss7_glare_data_t));
<span style="color: #800080; font-weight: bold">@@ -1149,7 +1149,7 @@ ftdm_status_t handle_reattempt(uint32_t suInstId, uint32_t spInstId, uint32_t ci</span>
                ftdmchan->caller_data.hangup_cause = 34;        /* Circuit Congrestion */
                /* this is a remote hangup request */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_REMOTE_REL);</span>
                /* move the state of the channel to Terminating to end the call */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_TERMINATING);
<span style="color: #800080; font-weight: bold">@@ -1179,7 +1179,7 @@ ftdm_status_t handle_pause(uint32_t suInstId, uint32_t spInstId, uint32_t circui</span>
        sngss7_set_flag(&g_ftdm_sngss7_data.cfg.isupIntf[infId], SNGSS7_PAUSED);
        
        /* go through all the circuits now and find any other circuits on this infId */
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #00A000">+        i = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[i].id != 0) {
                
                /* check that the infId matches and that this is not a siglink */
<span style="color: #800080; font-weight: bold">@@ -1200,7 +1200,7 @@ ftdm_status_t handle_pause(uint32_t suInstId, uint32_t spInstId, uint32_t circui</span>
                        if (ftdm_test_flag(ftdmchan->span, FTDM_SPAN_IN_THREAD)) {
                                SS7_DEBUG_CHAN(ftdmchan, "Rx PAUSE%s\n", "");
                                /* set the pause flag on the channel */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
                        }
        
                        /* unlock the channel again before we exit */
<span style="color: #800080; font-weight: bold">@@ -1234,7 +1234,7 @@ ftdm_status_t handle_resume(uint32_t suInstId, uint32_t spInstId, uint32_t circu</span>
        sngss7_clear_flag(&g_ftdm_sngss7_data.cfg.isupIntf[infId], SNGSS7_PAUSED);
        /* go through all the circuits now and find any other circuits on this infId */
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #00A000">+        i = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
        while (g_ftdm_sngss7_data.cfg.isupCkt[i].id != 0) {
                /* check that the infId matches and that this is not a siglink */
<span style="color: #800080; font-weight: bold">@@ -1252,14 +1252,14 @@ ftdm_status_t handle_resume(uint32_t suInstId, uint32_t spInstId, uint32_t circu</span>
                        ftdm_mutex_lock(ftdmchan->mutex);
                        /* only resume if we are paused */
<span style="color: #A00000">-                        if (sngss7_test_flag(sngss7_info, FLAG_INFID_PAUSED)) {</span>
<span style="color: #00A000">+                        if (sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_PAUSED)) {</span>
                                SS7_DEBUG_CHAN(ftdmchan, "Rx RESUME%s\n", "");
                                /* set the resume flag on the channel */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
                                /* clear the paused flag */
<span style="color: #A00000">-                                sngss7_clear_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                                sngss7_clear_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
                        }
                        
                        /* unlock the channel again before we exit */
<span style="color: #800080; font-weight: bold">@@ -1421,12 +1421,12 @@ ftdm_status_t handle_blo_req(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* check if the circuit is already blocked or not */
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) {</span>
                SS7_WARN("Received BLO on circuit that is already blocked!\n");
        }
        /* throw the ckt block flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
        /* set the channel to suspended state */
        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1484,15 +1484,15 @@ ftdm_status_t handle_ubl_req(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* check if the channel is blocked */
<span style="color: #A00000">-        if (!(sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+        if (!(sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX))) {</span>
                SS7_WARN("Received UBL on circuit that is not blocked!\n");
        }
        /* throw the unblock flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
        /* clear the block flag */
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX);</span>
        /* set the channel to suspended state */
        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1550,7 +1550,7 @@ ftdm_status_t handle_rsc_req(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* throw the reset flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_RESET_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_RX);</span>
        switch (ftdmchan->state) {
        /**************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -1595,7 +1595,7 @@ ftdm_status_t handle_local_rsc_req(uint32_t suInstId, uint32_t spInstId, uint32_</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* throw the reset flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_RESET_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_RX);</span>
        switch (ftdmchan->state) {
        /**************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -1643,9 +1643,9 @@ ftdm_status_t handle_rsc_rsp(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        /**********************************************************************/
        case FTDM_CHANNEL_STATE_RESTART:
                
<span style="color: #A00000">-                if ( sngss7_test_flag(sngss7_info, FLAG_RESET_TX) ) {</span>
<span style="color: #00A000">+                if ( sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_TX) ) {</span>
                        /* throw the FLAG_RESET_TX_RSP to indicate we have acknowledgement from the remote side */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
                        /* go to DOWN */
                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_DOWN);
<span style="color: #800080; font-weight: bold">@@ -1667,7 +1667,7 @@ ftdm_status_t handle_rsc_rsp(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
        case FTDM_CHANNEL_STATE_HANGUP_COMPLETE:
                
                /* throw the FLAG_RESET_TX_RSP to indicate we have acknowledgement from the remote side */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
                /* go to DOWN */
                /*ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_DOWN);*/
<span style="color: #800080; font-weight: bold">@@ -1795,12 +1795,12 @@ ftdm_status_t handle_local_blk(uint32_t suInstId, uint32_t spInstId, uint32_t ci</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* check if the circuit is already blocked or not */
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
                SS7_WARN("Received local BLO on circuit that is already blocked!\n");
        }
        /* throw the ckt block flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX);</span>
        /* set the channel to suspended state */
        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1831,12 +1831,12 @@ ftdm_status_t handle_local_ubl(uint32_t suInstId, uint32_t spInstId, uint32_t ci</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* check if the circuit is already blocked or not */
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info, FLAG_CKT_LC_UNBLK_RX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_LC_UNBLK_RX)) {</span>
                SS7_WARN("Received local UBL on circuit that is already unblocked!\n");
        }
        /* throw the ckt block flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_CKT_LC_UNBLK_RX);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_LC_UNBLK_RX);</span>
        /* set the channel to suspended state */
        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1878,7 +1878,7 @@ ftdm_status_t handle_ucic(uint32_t suInstId, uint32_t spInstId, uint32_t circuit</span>
        ftdm_mutex_lock(ftdmchan->mutex);
        /* throw the ckt block flag */
<span style="color: #A00000">-        sngss7_set_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
<span style="color: #00A000">+        sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
        /* set the channel to suspended state */
        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1982,11 +1982,11 @@ ftdm_status_t handle_cgb_req(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                        switch (blockType) {
                        /**********************************************************************/
                        case 0:        /* maintenance oriented */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
                                break;
                        /**********************************************************************/
                        case 1: /* hardware failure oriented */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
                                break;
                        /**********************************************************************/
                        case 2: /* reserved for national use */
<span style="color: #800080; font-weight: bold">@@ -2113,11 +2113,11 @@ ftdm_status_t handle_cgu_req(uint32_t suInstId, uint32_t spInstId, uint32_t circ</span>
                        switch (blockType) {
                        /**********************************************************************/
                        case 0:        /* maintenance oriented */
<span style="color: #A00000">-                                sngss7_clear_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
<span style="color: #00A000">+                                sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX);</span>
                                break;
                        /**********************************************************************/
                        case 1: /* hardware failure oriented */
<span style="color: #A00000">-                                sngss7_clear_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
<span style="color: #00A000">+                                sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX);</span>
                                break;
                        /**********************************************************************/
                        case 2: /* reserved for national use */
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_in.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_in.c</span>
<span style="color: #000080; font-weight: bold">index 72bd1c3..76984b9 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_in.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_in.c</span>
<span style="color: #800080; font-weight: bold">@@ -409,13 +409,80 @@ void sngss7_sta_ind(uint32_t suInstId, uint32_t spInstId, uint32_t circuit, uint</span>
        sngss7_chan_data_t        *sngss7_info = NULL;
        ftdm_channel_t                *ftdmchan = NULL;
        sngss7_event_data_t        *sngss7_event = NULL;
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /* get the ftdmchan and ss7_chan_data from the circuit */</span>
<span style="color: #A00000">-        if (extract_chan_data(circuit, &sngss7_info, &ftdmchan)) {</span>
<span style="color: #A00000">-                SS7_ERROR("Failed to extract channel data for circuit = %d!\n", circuit);</span>
<span style="color: #A00000">-                SS7_FUNC_TRACE_EXIT(__FUNCTION__);</span>
<span style="color: #A00000">-                return;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+        uint32_t                        intfId;</span>
<span style="color: #00A000">+        int                                 x;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check if the eventType is a pause/resume */</span>
<span style="color: #00A000">+        switch (evntType) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        case (SIT_STA_PAUSEIND):</span>
<span style="color: #00A000">+        case (SIT_STA_RESUMEIND):</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* the circuit for this type of event may not exist on the local system</span>
<span style="color: #00A000">+                 * so first check if the circuit is local</span>
<span style="color: #00A000">+                 */</span>
<span style="color: #00A000">+                if ((circuit >= (g_ftdm_sngss7_data.cfg.procId * 1000)) &&</span>
<span style="color: #00A000">+                        (circuit < ((g_ftdm_sngss7_data.cfg.procId +1) * 1000))) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* the circuit is on the local system, handle normally */</span>
<span style="color: #00A000">+                        goto sta_ind_local;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* the circuit is not local, so find a local circuit with the same intfId</span>
<span style="color: #00A000">+                 * by finding the orginial circuit in our array first, finding the intfId </span>
<span style="color: #00A000">+                 * from there, then go through the local circuits to see if we find a </span>
<span style="color: #00A000">+                 * match and use that circuit instead</span>
<span style="color: #00A000">+                 */</span>
<span style="color: #00A000">+                intfId = g_ftdm_sngss7_data.cfg.isupCkt[circuit].infId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+                while ((g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) &&</span>
<span style="color: #00A000">+                         (g_ftdm_sngss7_data.cfg.isupCkt[x].id < ((g_ftdm_sngss7_data.cfg.procId +1) * 1000))) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        /* confirm this is a voice channel and not a gap/sig (no ftdmchan there) */</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.isupCkt[x].type != VOICE) goto move_along;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* compare the intfIds */</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.isupCkt[x].infId == intfId) {</span>
<span style="color: #00A000">+                                /* we have a match, setup the pointers to the correct values */</span>
<span style="color: #00A000">+                                circuit = x;</span>
<span style="color: #00A000">+                                </span>
<span style="color: #00A000">+                                if (extract_chan_data(circuit, &sngss7_info, &ftdmchan)) {</span>
<span style="color: #00A000">+                                        SS7_ERROR("Failed to extract channel data for circuit = %d!\n", circuit);</span>
<span style="color: #00A000">+                                        SS7_FUNC_TRACE_EXIT(__FUNCTION__);</span>
<span style="color: #00A000">+                                        return;</span>
<span style="color: #00A000">+                                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                                /* bounce out of the loop */</span>
<span style="color: #00A000">+                                break;</span>
<span style="color: #00A000">+                        } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].intfId == intfId) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+move_along:</span>
<span style="color: #00A000">+                        /* move along ... nothing to see here */</span>
<span style="color: #00A000">+                        x++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* check if we found any circuits that are on the intfId, drop the message</span>
<span style="color: #00A000">+                 * if none are found</span>
<span style="color: #00A000">+                 */</span>
<span style="color: #00A000">+                if (ftdmchan == NULL) goto sta_ind_end;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        default:</span>
<span style="color: #00A000">+sta_ind_local:</span>
<span style="color: #00A000">+                /* get the ftdmchan and ss7_chan_data from the circuit */</span>
<span style="color: #00A000">+                if (extract_chan_data(circuit, &sngss7_info, &ftdmchan)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to extract channel data for circuit = %d!\n", circuit);</span>
<span style="color: #00A000">+                        SS7_FUNC_TRACE_EXIT(__FUNCTION__);</span>
<span style="color: #00A000">+                        return;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                </span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* switch (evntType) */</span>
        /* initalize the sngss7_event */
        sngss7_event = ftdm_malloc(sizeof(*sngss7_event));
<span style="color: #800080; font-weight: bold">@@ -440,6 +507,7 @@ void sngss7_sta_ind(uint32_t suInstId, uint32_t spInstId, uint32_t circuit, uint</span>
        /* enqueue this event */
        ftdm_queue_enqueue(((sngss7_span_data_t*)sngss7_info->ftdmchan->span->signal_data)->event_queue, sngss7_event);
<span style="color: #00A000">+sta_ind_end:</span>
        SS7_FUNC_TRACE_EXIT(__FUNCTION__);
}
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c</span>
<span style="color: #000080; font-weight: bold">index 3f507d6..1dfcab4 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c</span>
<span style="color: #800080; font-weight: bold">@@ -48,6 +48,8 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta);</span>
void handle_sng_mtp3_alarm(Pst *pst, SnMngmt *sta);
void handle_sng_isup_alarm(Pst *pst, SiMngmt *sta);
void handle_sng_cc_alarm(Pst *pst, CcMngmt *sta);
<span style="color: #00A000">+void handle_sng_relay_alarm(Pst *pst, RyMngmt *sta);</span>
<span style="color: #00A000">+</span>
/******************************************************************************/
/* FUNCTIONS ******************************************************************/
<span style="color: #800080; font-weight: bold">@@ -132,17 +134,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                                        
<span style="color: #800080; font-weight: bold">@@ -173,17 +175,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                        ftdm_log(FTDM_LOG_ERROR,"[MTP2]%s %s : %s\n",
<span style="color: #800080; font-weight: bold">@@ -196,17 +198,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                        ftdm_log(FTDM_LOG_ERROR,"[MTP2]%s %s : %s\n",
<span style="color: #800080; font-weight: bold">@@ -220,17 +222,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                        ftdm_log(FTDM_LOG_ERROR,"[MTP2]%s %s : RTB Queue Len(%d)|Oldest BSN(%d)|Tx Queue Len(%d)|Outstanding Frames(%d)\n",
<span style="color: #800080; font-weight: bold">@@ -246,17 +248,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                        ftdm_log(FTDM_LOG_ERROR,"[MTP2]%s %s : RTB Queue Len(%d)\n",
<span style="color: #800080; font-weight: bold">@@ -269,17 +271,17 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->t.usta.evntParm[0]) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp2Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == sta->t.usta.evntParm[0]) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp2Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->t.usta.evntParm[0]);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp2Link[x].name);</span>
                        }
                        ftdm_log(FTDM_LOG_ERROR,"[MTP2]%s %s : %d\n",
<span style="color: #800080; font-weight: bold">@@ -290,9 +292,11 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta)</span>
                /**********************************************************************/
                case (LCM_EVENT_UI_INV_EVT):
                case (LCM_EVENT_LI_INV_EVT):
<span style="color: #A00000">-                        ftdm_log(FTDM_LOG_ERROR,"[MTP2] %s : %s : Primitive (%d)\n",</span>
<span style="color: #00A000">+                        ftdm_log(FTDM_LOG_ERROR,"[MTP2] %s(%d) : %s(%d) : Primitive (%d)\n",</span>
                                                                                DECODE_LSD_EVENT(sta->t.usta.alarm.event),
<span style="color: #00A000">+                                                                                sta->t.usta.alarm.event,</span>
                                                                                DECODE_LCM_CAUSE(sta->t.usta.alarm.cause),
<span style="color: #00A000">+                                                                                sta->t.usta.alarm.cause,</span>
                                                                                sta->t.usta.evntParm[0]);
                        break;
                /**********************************************************************/
<span style="color: #800080; font-weight: bold">@@ -362,22 +366,23 @@ void handle_sng_mtp3_alarm(Pst *pst, SnMngmt *sta)</span>
                        /* find the name for the sap in question */
                        x = 1;
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLink[x].id != 0) {</span>
<span style="color: #A00000">-                                if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == sta->hdr.elmId.elmntInst1) {</span>
<span style="color: #00A000">+                        while (g_ftdm_sngss7_data.cfg.mtp3Link[x].id != 0) {</span>
<span style="color: #00A000">+                                if (g_ftdm_sngss7_data.cfg.mtp3Link[x].id == sta->hdr.elmId.elmntInst1) {</span>
                                        break;
                                }
                                x++;
                        }
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.mtpLink[x].id == 0) {</span>
<span style="color: #00A000">+                        if (g_ftdm_sngss7_data.cfg.mtp3Link[x].id == 0) {</span>
                                sprintf(buf, "[SAPID:%d]", sta->hdr.elmId.elmntInst1);
                        } else {
<span style="color: #A00000">-                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtpLink[x].name);</span>
<span style="color: #00A000">+                                sprintf(buf, "[%s]", g_ftdm_sngss7_data.cfg.mtp3Link[x].name);</span>
                        }
                switch (sta->t.usta.alarm.event) {
                /**********************************************************************/
                case (LSN_EVENT_INV_OPC_OTHER_END):
<span style="color: #00A000">+                        </span>
                        ftdm_log(FTDM_LOG_ERROR,"[MTP3]%s %s : %s : OPC(0x%X%X%X%X)\n",
                                                                                buf,
                                                                                DECODE_LSN_EVENT(sta->t.usta.alarm.event),
<span style="color: #800080; font-weight: bold">@@ -460,7 +465,7 @@ void handle_sng_mtp3_alarm(Pst *pst, SnMngmt *sta)</span>
                        break;
                /**********************************************************************/
                default:
<span style="color: #A00000">-                        ftdm_log(FTDM_LOG_ERROR,"[MTP3][DPC:0x%d%d%d%d] %s : %s\n",</span>
<span style="color: #00A000">+                        ftdm_log(FTDM_LOG_ERROR,"[MTP3][DPC:0x%X%X%X%X] %s : %s\n",</span>
                                                                                sta->t.usta.evntParm[0],
                                                                                sta->t.usta.evntParm[1],
                                                                                sta->t.usta.evntParm[2],
<span style="color: #800080; font-weight: bold">@@ -744,7 +749,63 @@ void handle_sng_cc_alarm(Pst *pst, CcMngmt *sta)</span>
        return;
} /* handle_cc_alarm */
<span style="color: #00A000">+</span>
/******************************************************************************/
<span style="color: #00A000">+void handle_sng_relay_alarm(Pst *pst, RyMngmt *sta)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        switch (sta->hdr.elmId.elmnt) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        case (LRY_USTA_ERR): /* ERROR */</span>
<span style="color: #00A000">+                ftdm_log(FTDM_LOG_ERROR,"[RELAY] Error: tx procId %d: err procId %d: channel %d: seq %s: reason %s\n",</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryErrUsta.sendPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryErrUsta.errPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryErrUsta.id,</span>
<span style="color: #00A000">+                                                                                                DECODE_LRY_SEQ(sta->t.usta.s.ryErrUsta.sequence),</span>
<span style="color: #00A000">+                                                                                                DECODE_LRY_REASON(sta->t.usta.s.ryErrUsta.reason));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* process the event */</span>
<span style="color: #00A000">+                handle_relay_disconnect_on_error(sta);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        case (LRY_USTA_CNG): /* Congestion */</span>
<span style="color: #00A000">+                ftdm_log(FTDM_LOG_ERROR,"[RELAY] Congestion: tx procId %d: rem procId %d: channel %d: %s\n",</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryCongUsta.sendPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryCongUsta.remPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryCongUsta.id,</span>
<span style="color: #00A000">+                                                                                                DECODE_LRY_CONG_FLAGS(sta->t.usta.s.ryCongUsta.flags));</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        case (LRY_USTA_UP): /* channel up */</span>
<span style="color: #00A000">+                ftdm_log(FTDM_LOG_ERROR,"[RELAY] Channel UP: tx procId %d: channel %d\n",</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryUpUsta.sendPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryUpUsta.id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* process the event */</span>
<span style="color: #00A000">+                handle_relay_connect(sta);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        case (LRY_USTA_DN): /* channel down */</span>
<span style="color: #00A000">+                ftdm_log(FTDM_LOG_ERROR,"[RELAY] Channel DOWN: tx procId %d: channel %d\n",</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryUpUsta.sendPid,</span>
<span style="color: #00A000">+                                                                                                sta->t.usta.s.ryUpUsta.id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* process the event */</span>
<span style="color: #00A000">+                handle_relay_disconnect_on_down(sta);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        default:</span>
<span style="color: #00A000">+                ftdm_log(FTDM_LOG_ERROR,"Unknown Relay Alram\n");</span>
<span style="color: #00A000">+                break;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* switch (sta->hdr.elmId.elmnt) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return;</span>
<span style="color: #00A000">+}</span>
/******************************************************************************/
/* For Emacs:
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.c</span>
<span style="color: #000080; font-weight: bold">index 9016771..c971179 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.c</span>
<span style="color: #800080; font-weight: bold">@@ -543,7 +543,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                                        ftdmchan->caller_data.hangup_cause = 41;
                
                                        /* set the flag to indicate this hangup is started from the local side */
<span style="color: #A00000">-                                        sngss7_set_flag (sngss7_info, FLAG_LOCAL_REL);</span>
<span style="color: #00A000">+                                        sngss7_set_ckt_flag (sngss7_info, FLAG_LOCAL_REL);</span>
                
                                        /* end the call */
                                        ftdm_set_state_locked (ftdmchan, FTDM_CHANNEL_STATE_CANCEL);
<span style="color: #800080; font-weight: bold">@@ -673,7 +673,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                }
                /* set the flag to indicate this hangup is started from the remote side */
<span style="color: #A00000">-                sngss7_set_flag (sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag (sngss7_info, FLAG_REMOTE_REL);</span>
                /*this state is set when the line is hanging up */
                sigev.event_id = FTDM_SIGEVENT_STOP;
<span style="color: #800080; font-weight: bold">@@ -689,15 +689,15 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                }
                /* check for remote hangup flag */
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_REMOTE_REL)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_REMOTE_REL)) {</span>
                        /* remote release ...do nothing here */
                        SS7_DEBUG_CHAN(ftdmchan,"Hanging up remotely requested call!%s\n", "");
<span style="color: #A00000">-                } else if (sngss7_test_flag (sngss7_info, FLAG_GLARE)) {</span>
<span style="color: #00A000">+                } else if (sngss7_test_ckt_flag (sngss7_info, FLAG_GLARE)) {</span>
                        /* release due to glare */
                        SS7_DEBUG_CHAN(ftdmchan,"Hanging up requested call do to glare%s\n", "");
                } else         {
                        /* set the flag to indicate this hangup is started from the local side */
<span style="color: #A00000">-                        sngss7_set_flag (sngss7_info, FLAG_LOCAL_REL);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag (sngss7_info, FLAG_LOCAL_REL);</span>
                        /*this state is set when FS is hanging up...so tell the stack */
                        ft_to_sngss7_rel (ftdmchan);
<span style="color: #800080; font-weight: bold">@@ -718,16 +718,16 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        break;
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_REMOTE_REL)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_REMOTE_REL)) {</span>
                        /* check if this hangup is from a tx RSC */
<span style="color: #A00000">-                        if (sngss7_test_flag (sngss7_info, FLAG_RESET_TX)) {</span>
<span style="color: #00A000">+                        if (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_TX)) {</span>
                                /* go to RESTART State until RSCa is received */
                                ftdm_set_state_locked (ftdmchan, FTDM_CHANNEL_STATE_RESTART);
                        } else {
                                /* if the hangup is from a rx RSC, rx GRS, or glare don't sent RLC */
<span style="color: #A00000">-                                if (!(sngss7_test_flag(sngss7_info, FLAG_RESET_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GLARE))) {</span>
<span style="color: #00A000">+                                if (!(sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE))) {</span>
                                        /* send out the release complete */
                                        ft_to_sngss7_rlc (ftdmchan);
<span style="color: #800080; font-weight: bold">@@ -738,17 +738,17 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        }
                        SS7_DEBUG_CHAN(ftdmchan,"Completing remotely requested hangup!%s\n", "");
<span style="color: #A00000">-                } else if (sngss7_test_flag (sngss7_info, FLAG_LOCAL_REL)) {</span>
<span style="color: #00A000">+                } else if (sngss7_test_ckt_flag (sngss7_info, FLAG_LOCAL_REL)) {</span>
                        /* if this hang up is do to a rx RESET we need to sit here till the RSP arrives */
<span style="color: #A00000">-                        if (sngss7_test_flag (sngss7_info, FLAG_RESET_TX_RSP)) {</span>
<span style="color: #00A000">+                        if (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_TX_RSP)) {</span>
                                /* go to the down state as we have already received RSC-RLC */
                                ftdm_set_state_locked (ftdmchan, FTDM_CHANNEL_STATE_DOWN);
                        }
                        /* if it's a local release the user sends us to down */
                        SS7_DEBUG_CHAN(ftdmchan,"Completing locally requested hangup!%s\n", "");
<span style="color: #A00000">-                } else if (sngss7_test_flag (sngss7_info, FLAG_GLARE)) {</span>
<span style="color: #00A000">+                } else if (sngss7_test_ckt_flag (sngss7_info, FLAG_GLARE)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan,"Completing requested hangup due to glare!%s\n", "");
                        ftdm_set_state_locked (ftdmchan, FTDM_CHANNEL_STATE_DOWN);
<span style="color: #800080; font-weight: bold">@@ -767,18 +767,18 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                }
                /* check if there is a reset response that needs to be sent */
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_RESET_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_RX)) {</span>
                        /* send a RSC-RLC */
                        ft_to_sngss7_rsca (ftdmchan);
                        /* clear the reset flag */
                        clear_rx_rsc_flags(sngss7_info);
<span style="color: #A00000">-                } /* if (sngss7_test_flag (sngss7_info, FLAG_RESET_RX)) */</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_RX)) */</span>
                /* check if there was a GRS that needs a GRA */
<span style="color: #A00000">-                if ((sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX)) &&</span>
<span style="color: #A00000">-                        (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) &&</span>
<span style="color: #A00000">-                        (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT))) {</span>
<span style="color: #00A000">+                if ((sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX)) &&</span>
<span style="color: #00A000">+                        (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) &&</span>
<span style="color: #00A000">+                        (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT))) {</span>
                        /* check if this is the base circuit and send out the GRA
                         * we insure that this is the last circuit to have the state change queued
<span style="color: #800080; font-weight: bold">@@ -794,40 +794,40 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        /* clear the grp reset flag */
                        clear_rx_grs_flags(sngss7_info);
<span style="color: #A00000">-                }/* if ( sngss7_test_flag ( sngss7_info, FLAG_GRP_RESET_RX ) ) */</span>
<span style="color: #00A000">+                }/* if ( sngss7_test_ckt_flag ( sngss7_info, FLAG_GRP_RESET_RX ) ) */</span>
                /* check if we got the reset response */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_RESET_TX_RSP)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_TX_RSP)) {</span>
                        /* clear the reset flag */
                        clear_tx_rsc_flags(sngss7_info);
<span style="color: #A00000">-                } /* if (sngss7_test_flag(sngss7_info, FLAG_RESET_TX_RSP)) */</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_TX_RSP)) */</span>
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) {</span>
                        /* clear the reset flag */
                        clear_tx_grs_flags(sngss7_info);
                        
                        /* clean out the spans GRA structure */
                        clear_rx_gra_data(sngss7_info);
<span style="color: #A00000">-                } /* if (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) */</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) */</span>
                /* check if we came from reset (aka we just processed a reset) */
                if ((ftdmchan->last_state == FTDM_CHANNEL_STATE_RESTART) ||
                        (ftdmchan->last_state == FTDM_CHANNEL_STATE_SUSPENDED)) {
                        /* check if reset flags are up indicating there is more processing to do yet */
<span style="color: #A00000">-                        if (!(sngss7_test_flag (sngss7_info, FLAG_RESET_TX)) &&</span>
<span style="color: #A00000">-                                !(sngss7_test_flag (sngss7_info, FLAG_RESET_RX)) &&</span>
<span style="color: #A00000">-                                !(sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_TX)) &&</span>
<span style="color: #A00000">-                                !(sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_RX))) {</span>
<span style="color: #00A000">+                        if (!(sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_TX)) &&</span>
<span style="color: #00A000">+                                !(sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_RX)) &&</span>
<span style="color: #00A000">+                                !(sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_TX)) &&</span>
<span style="color: #00A000">+                                !(sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_RX))) {</span>
                                /* now check if there is an active block */
<span style="color: #A00000">-                                if (!(sngss7_test_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GRP_HW_BLOCK_TX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX)) &&</span>
<span style="color: #A00000">-                                        !(sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
<span style="color: #00A000">+                                if (!(sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_LC_BLOCK_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_TX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX)) &&</span>
<span style="color: #00A000">+                                        !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
                                
                                        /* check if the sig status is down, and bring it up if it isn't */
                                        if (!ftdm_test_flag (ftdmchan, FTDM_CHANNEL_SIG_UP)) {
<span style="color: #800080; font-weight: bold">@@ -839,7 +839,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                                        } /* if (!ftdm_test_flag (ftdmchan, FTDM_CHANNEL_SIG_UP)) */
                                } /* if !blocked */
                        } else {
<span style="color: #A00000">-                                SS7_DEBUG_CHAN(ftdmchan,"Reset flags present (0x%X)\n", sngss7_info->flags);</span>
<span style="color: #00A000">+                                SS7_DEBUG_CHAN(ftdmchan,"Reset flags present (0x%X)\n", sngss7_info->ckt_flags);</span>
                        
                                /* there is still another reset pending so go back to reset*/
                                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_RESTART);
<span style="color: #800080; font-weight: bold">@@ -858,8 +858,8 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                sngss7_info->spId = 0;
                /* clear any call related flags */
<span style="color: #A00000">-                sngss7_clear_flag (sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #A00000">-                sngss7_clear_flag (sngss7_info, FLAG_LOCAL_REL);</span>
<span style="color: #00A000">+                sngss7_clear_ckt_flag (sngss7_info, FLAG_REMOTE_REL);</span>
<span style="color: #00A000">+                sngss7_clear_ckt_flag (sngss7_info, FLAG_LOCAL_REL);</span>
                if (ftdm_test_flag (ftdmchan, FTDM_CHANNEL_OPEN)) {
<span style="color: #800080; font-weight: bold">@@ -869,10 +869,10 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                } /* if (ftdm_test_flag (ftdmchan, FTDM_CHANNEL_OPEN)) */
                /* check if there is a glared call that needs to be processed */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_GLARE)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE)) {</span>
                        
                        /* clear the glare flag */
<span style="color: #A00000">-                        sngss7_clear_flag (sngss7_info, FLAG_GLARE);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag (sngss7_info, FLAG_GLARE);</span>
                        /* check if we have an IAM stored...if we don't have one just exit */
                        if (sngss7_info->glare.circuit != 0) {
<span style="color: #800080; font-weight: bold">@@ -885,23 +885,23 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                                /* clear the glare info */
                                memset(&sngss7_info->glare, 0x0, sizeof(sngss7_glare_data_t));
                        } /* if (sngss7_info->glare.circuit != 0) */
<span style="color: #A00000">-                } /* if (sngss7_test_flag(sngss7_info, FLAG_GLARE)) */</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag(sngss7_info, FLAG_GLARE)) */</span>
                break;
        /**************************************************************************/
        case FTDM_CHANNEL_STATE_RESTART:        /* CICs needs a Reset */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
<span style="color: #A00000">-                        if ((sngss7_test_flag(sngss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #A00000">-                                (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX))) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
<span style="color: #00A000">+                        if ((sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #00A000">+                                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX))) {</span>
                                SS7_DEBUG_CHAN(ftdmchan,"Incoming Reset request on CIC in UCIC block, removing UCIC block%s\n", "");
                                /* set the unblk flag */
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_CKT_UCIC_UNBLK);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_UCIC_UNBLK);</span>
                                /* clear the block flag */
<span style="color: #A00000">-                                sngss7_clear_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
<span style="color: #00A000">+                                sngss7_clear_ckt_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
                                /* process the flag */
                                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -915,28 +915,28 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                 * we can also check if we are in a PAUSED state (no point in sending message
                 */
                if ((ftdmchan->last_state != FTDM_CHANNEL_STATE_HANGUP_COMPLETE) &&
<span style="color: #A00000">-                        (!sngss7_test_flag(sngss7_info, FLAG_INFID_PAUSED))) {</span>
<span style="color: #00A000">+                        (!sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_PAUSED))) {</span>
                        /* check if this is an outgoing RSC */
<span style="color: #A00000">-                        if ((sngss7_test_flag(sngss7_info, FLAG_RESET_TX)) &&</span>
<span style="color: #A00000">-                                !(sngss7_test_flag(sngss7_info, FLAG_RESET_SENT))) {</span>
<span style="color: #00A000">+                        if ((sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_TX)) &&</span>
<span style="color: #00A000">+                                !(sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_SENT))) {</span>
                                /* send a reset request */
                                ft_to_sngss7_rsc (ftdmchan);
<span style="color: #A00000">-                                sngss7_set_flag(sngss7_info, FLAG_RESET_SENT);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_SENT);</span>
<span style="color: #A00000">-                        } /* if (sngss7_test_flag(sngss7_info, FLAG_RESET_TX)) */</span>
<span style="color: #00A000">+                        } /* if (sngss7_test_ckt_flag(sngss7_info, FLAG_RESET_TX)) */</span>
        
                        /* check if this is the first channel of a GRS (this flag is thrown when requesting reset) */
<span style="color: #A00000">-                        if ( (sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_TX)) &&</span>
<span style="color: #A00000">-                                !(sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_SENT)) &&</span>
<span style="color: #A00000">-                                (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_BASE))) {</span>
<span style="color: #00A000">+                        if ( (sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_TX)) &&</span>
<span style="color: #00A000">+                                !(sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_SENT)) &&</span>
<span style="color: #00A000">+                                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_BASE))) {</span>
                                        /* send out the grs */
                                        ft_to_sngss7_grs (ftdmchan);
<span style="color: #A00000">-                                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_SENT);</span>
<span style="color: #00A000">+                                        sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_SENT);</span>
<span style="color: #A00000">-                        }/* if ( sngss7_test_flag ( sngss7_info, FLAG_GRP_RESET_TX ) ) */</span>
<span style="color: #00A000">+                        }/* if ( sngss7_test_ckt_flag ( sngss7_info, FLAG_GRP_RESET_TX ) ) */</span>
                } /* if ( last_state != HANGUP && !PAUSED */
        
                /* if the sig_status is up...bring it down */
<span style="color: #800080; font-weight: bold">@@ -946,10 +946,10 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        ftdm_span_send_signal (ftdmchan->span, &sigev);
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_RX)) {</span>
                        /* set the grp reset done flag so we know we have finished this reset */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_RX_DN);</span>
<span style="color: #A00000">-                } /* if (sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_RX)) */</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_DN);</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_RX)) */</span>
                if (ftdm_test_flag (ftdmchan, FTDM_CHANNEL_INUSE)) {
<span style="color: #800080; font-weight: bold">@@ -987,17 +987,17 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        } /* switch (ftdmchan->last_state) */
                } else {
                        /* check if this an incoming RSC or we have a response already */
<span style="color: #A00000">-                        if (sngss7_test_flag (sngss7_info, FLAG_RESET_RX) ||</span>
<span style="color: #A00000">-                                sngss7_test_flag (sngss7_info, FLAG_RESET_TX_RSP) ||</span>
<span style="color: #A00000">-                                sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_TX_RSP) ||</span>
<span style="color: #A00000">-                                sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_RX_CMPLT)) {</span>
<span style="color: #00A000">+                        if (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_RX) ||</span>
<span style="color: #00A000">+                                sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_TX_RSP) ||</span>
<span style="color: #00A000">+                                sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_TX_RSP) ||</span>
<span style="color: #00A000">+                                sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_RX_CMPLT)) {</span>
        
<span style="color: #A00000">-                                SS7_DEBUG_CHAN(ftdmchan, "Reset processed moving to DOWN (0x%X)\n", sngss7_info->flags);</span>
<span style="color: #00A000">+                                SS7_DEBUG_CHAN(ftdmchan, "Reset processed moving to DOWN (0x%X)\n", sngss7_info->ckt_flags);</span>
        
                                /* go to a down state to clear the channel and send the response */
                                ftdm_set_state_locked (ftdmchan, FTDM_CHANNEL_STATE_DOWN);
                        } else {
<span style="color: #A00000">-                                SS7_DEBUG_CHAN(ftdmchan, "Waiting on Reset Rsp/Grp Reset to move to DOWN (0x%X)\n", sngss7_info->flags);</span>
<span style="color: #00A000">+                                SS7_DEBUG_CHAN(ftdmchan, "Waiting on Reset Rsp/Grp Reset to move to DOWN (0x%X)\n", sngss7_info->ckt_flags);</span>
                        }
                }
<span style="color: #800080; font-weight: bold">@@ -1005,20 +1005,20 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
        /**************************************************************************/
        case FTDM_CHANNEL_STATE_SUSPENDED:        /* circuit has been blocked */
<span style="color: #A00000">-                 SS7_DEBUG_CHAN(ftdmchan,"Current flags: 0x%X\n", sngss7_info->flags);</span>
<span style="color: #00A000">+                 SS7_DEBUG_CHAN(ftdmchan,"Current flags: 0x%X\n", sngss7_info->ckt_flags);</span>
                /**********************************************************************/
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_INFID_RESUME)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_RESUME)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing RESUME%s\n", "");
                        /* clear the RESUME flag */
<span style="color: #A00000">-                        sngss7_clear_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
                        /* if there are any resets present */
<span style="color: #A00000">-                        if ((sngss7_test_flag (sngss7_info, FLAG_RESET_TX)) ||</span>
<span style="color: #A00000">-                                (sngss7_test_flag (sngss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #A00000">-                                (sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_TX)) ||</span>
<span style="color: #A00000">-                                (sngss7_test_flag (sngss7_info, FLAG_GRP_RESET_RX))) {</span>
<span style="color: #00A000">+                        if ((sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_TX)) ||</span>
<span style="color: #00A000">+                                (sngss7_test_ckt_flag (sngss7_info, FLAG_RESET_RX)) ||</span>
<span style="color: #00A000">+                                (sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_TX)) ||</span>
<span style="color: #00A000">+                                (sngss7_test_ckt_flag (sngss7_info, FLAG_GRP_RESET_RX))) {</span>
                                /* go back to the reset state */
                                goto suspend_goto_restart;
<span style="color: #800080; font-weight: bold">@@ -1034,7 +1034,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                } /* if (sngss7_test_flag(sngss7_info, FLAG_INFID_RESUME)) */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_INFID_PAUSED)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_PAUSED)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing PAUSE%s\n", "");
                        /* bring the sig status down */
<span style="color: #800080; font-weight: bold">@@ -1044,9 +1044,9 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        /* go back to the last state */
                        goto suspend_goto_last;
<span style="color: #A00000">-                } /* if (sngss7_test_flag(sngss7_info, FLAG_INFID_PAUSED)) { */</span>
<span style="color: #00A000">+                } /* if (sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_PAUSED)) { */</span>
                /**********************************************************************/
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_MN_BLOCK_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_MN_BLOCK_RX)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_MN_BLOCK_RX flag %s\n", "");
                        /* bring the sig status down */
<span style="color: #800080; font-weight: bold">@@ -1061,11 +1061,11 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX)){</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX)){</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_MN_UNBLK_RX flag %s\n", "");
                        /* clear the unblock flag */
<span style="color: #A00000">-                        sngss7_clear_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
                        /* bring the sig status up */
                        sigev.event_id = FTDM_SIGEVENT_SIGSTATUS_CHANGED;
<span style="color: #800080; font-weight: bold">@@ -1080,7 +1080,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                }
                /**********************************************************************/
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_MN_BLOCK_TX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_MN_BLOCK_TX)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_MN_BLOCK_TX flag %s\n", "");
                        /* bring the sig status down */
<span style="color: #800080; font-weight: bold">@@ -1095,11 +1095,11 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_MN_UNBLK_TX)){</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_MN_UNBLK_TX)){</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_MN_UNBLK_TX flag %s\n", "");
                        /* clear the unblock flag */
<span style="color: #A00000">-                        sngss7_clear_flag (sngss7_info, FLAG_CKT_MN_UNBLK_TX);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag (sngss7_info, FLAG_CKT_MN_UNBLK_TX);</span>
                        /* bring the sig status up */
                        sigev.event_id = FTDM_SIGEVENT_SIGSTATUS_CHANGED;
<span style="color: #800080; font-weight: bold">@@ -1114,7 +1114,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                }
                /**********************************************************************/
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_LC_BLOCK_RX)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_LC_BLOCK_RX flag %s\n", "");
                        /* send a BLA */
<span style="color: #800080; font-weight: bold">@@ -1124,11 +1124,11 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_LC_UNBLK_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_LC_UNBLK_RX)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_LC_UNBLK_RX flag %s\n", "");
                        
                        /* clear the unblock flag */
<span style="color: #A00000">-                        sngss7_clear_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag (sngss7_info, FLAG_CKT_MN_UNBLK_RX);</span>
                        /* send a uba */
                        /*ft_to_sngss7_uba(ftdmchan);*/
<span style="color: #800080; font-weight: bold">@@ -1137,7 +1137,7 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                }
                /**********************************************************************/
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_UCIC_BLOCK)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_UCIC_BLOCK flag %s\n", "");
                        /* bring the channel signaling status to down */
<span style="color: #800080; font-weight: bold">@@ -1157,17 +1157,17 @@ ftdm_status_t ftdm_sangoma_ss7_process_state_change (ftdm_channel_t * ftdmchan)</span>
                        goto suspend_goto_last;
                }
<span style="color: #A00000">-                if (sngss7_test_flag (sngss7_info, FLAG_CKT_UCIC_UNBLK)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag (sngss7_info, FLAG_CKT_UCIC_UNBLK)) {</span>
                        SS7_DEBUG_CHAN(ftdmchan, "Processing CKT_UCIC_UNBLK flag %s\n", "");;
                        /* remove the UCIC block flag */
<span style="color: #A00000">-                        sngss7_clear_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
                        /* remove the UCIC unblock flag */
<span style="color: #A00000">-                        sngss7_clear_flag(sngss7_info, FLAG_CKT_UCIC_UNBLK);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_CKT_UCIC_UNBLK);</span>
                        /* throw the channel into reset to sync states */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
                        /* bring the channel into restart again */
                        goto suspend_goto_restart;
<span style="color: #800080; font-weight: bold">@@ -1232,9 +1232,9 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(ftdm_sangoma_ss7_outgoing_call)</span>
        }
        /* check if there is a remote block */
<span style="color: #A00000">-        if ((sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+        if ((sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
                /* the channel is blocked...can't send any calls here */
                SS7_ERROR_CHAN(ftdmchan, "Requested channel is remotely blocked, re-hunt channel!%s\n", " ");
<span style="color: #800080; font-weight: bold">@@ -1242,9 +1242,9 @@ static FIO_CHANNEL_OUTGOING_CALL_FUNCTION(ftdm_sangoma_ss7_outgoing_call)</span>
        }
        /* check if there is a local block */
<span style="color: #A00000">-        if ((sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_HW_BLOCK_TX)) ||</span>
<span style="color: #A00000">-                (sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
<span style="color: #00A000">+        if ((sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_HW_BLOCK_TX)) ||</span>
<span style="color: #00A000">+                (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_TX))) {</span>
                /* KONRAD FIX ME : we should check if this is a TEST call and allow it */
<span style="color: #800080; font-weight: bold">@@ -1339,6 +1339,25 @@ static ftdm_status_t ftdm_sangoma_ss7_start(ftdm_span_t * span)</span>
        SS7_INFO ("Starting span %s:%u.\n", span->name, span->span_id);
<span style="color: #00A000">+        /* clear the monitor thread stop flag */</span>
<span style="color: #00A000">+        ftdm_clear_flag (span, FTDM_SPAN_STOP_THREAD);</span>
<span style="color: #00A000">+        ftdm_clear_flag (span, FTDM_SPAN_IN_THREAD);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* activate all the configured ss7 links */</span>
<span style="color: #00A000">+        if (ft_to_sngss7_activate_all()) {</span>
<span style="color: #00A000">+                SS7_CRITICAL ("Failed to activate LibSngSS7!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /*start the span monitor thread */</span>
<span style="color: #00A000">+        if (ftdm_thread_create_detached (ftdm_sangoma_ss7_run, span) != FTDM_SUCCESS) {</span>
<span style="color: #00A000">+                SS7_CRITICAL ("Failed to start Span Monitor Thread!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm the state of all isup interfaces*/</span>
<span style="color: #00A000">+        check_status_of_all_isup_intf();</span>
<span style="color: #00A000">+</span>
        /* throw the channels in pause */
        for (x = 1; x < (span->chan_count + 1); x++) {
                /* extract the channel structure and sngss7 channel data */
<span style="color: #800080; font-weight: bold">@@ -1348,23 +1367,24 @@ static ftdm_status_t ftdm_sangoma_ss7_start(ftdm_span_t * span)</span>
                sngss7_span = ftdmchan->span->signal_data;
                sngss7_intf = &g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId];
<span style="color: #A00000">-</span>
                /* lock the channel */
                ftdm_mutex_lock(ftdmchan->mutex);
                /* check if the interface is paused or resumed */
                if (sngss7_test_flag(sngss7_intf, SNGSS7_PAUSED)) {
<span style="color: #00A000">+                        SS7_DEBUG_CHAN(ftdmchan, "ISUP intf %d is PAUSED\n", sngss7_intf->id);</span>
                        /* throw the pause flag */
<span style="color: #A00000">-                        sngss7_clear_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
                } else {
<span style="color: #A00000">-                        /* throw the pause flag */</span>
<span style="color: #A00000">-                        sngss7_clear_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                        SS7_DEBUG_CHAN(ftdmchan, "ISUP intf %d is RESUMED\n", sngss7_intf->id);</span>
<span style="color: #00A000">+                        /* throw the resume flag */</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
                }
#if 0
                /* throw the grp reset flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
                if (x == 1) {
                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_BASE);
                        sngss7_span->tx_grs.circuit = sngss7_info->circuit->id;
<span style="color: #800080; font-weight: bold">@@ -1372,7 +1392,7 @@ static ftdm_status_t ftdm_sangoma_ss7_start(ftdm_span_t * span)</span>
                }
#else
                /* throw the channel into reset */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
#endif
                /* throw the channel to suspend */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -1381,22 +1401,6 @@ static ftdm_status_t ftdm_sangoma_ss7_start(ftdm_span_t * span)</span>
                ftdm_mutex_unlock(ftdmchan->mutex);
        }
<span style="color: #A00000">-        /* clear the monitor thread stop flag */</span>
<span style="color: #A00000">-        ftdm_clear_flag (span, FTDM_SPAN_STOP_THREAD);</span>
<span style="color: #A00000">-        ftdm_clear_flag (span, FTDM_SPAN_IN_THREAD);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /* activate all the configured ss7 links */</span>
<span style="color: #A00000">-        if (ft_to_sngss7_activate_all()) {</span>
<span style="color: #A00000">-                SS7_CRITICAL ("Failed to activate LibSngSS7!\n");</span>
<span style="color: #A00000">-                return FTDM_FAIL;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /*start the span monitor thread */</span>
<span style="color: #A00000">-        if (ftdm_thread_create_detached (ftdm_sangoma_ss7_run, span) != FTDM_SUCCESS) {</span>
<span style="color: #A00000">-                SS7_CRITICAL ("Failed to start Span Monitor Thread!\n");</span>
<span style="color: #A00000">-                return FTDM_FAIL;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-</span>
        SS7_DEBUG ("Finished starting span %s:%u.\n", span->name, span->span_id);
        return FTDM_SUCCESS;
<span style="color: #800080; font-weight: bold">@@ -1537,7 +1541,6 @@ static FIO_SIG_LOAD_FUNCTION(ftdm_sangoma_ss7_init)</span>
        sng_event.cc.sng_umsg_ind = sngss7_umsg_ind;
        sng_event.cc.sng_susp_ind = sngss7_susp_ind;
        sng_event.cc.sng_resm_ind = sngss7_resm_ind;
<span style="color: #A00000">-        sng_event.cc.sng_ssp_sta_cfm = sngss7_ssp_sta_cfm;</span>
        sng_event.sm.sng_log = handle_sng_log;
        sng_event.sm.sng_mtp1_alarm = handle_sng_mtp1_alarm;
<span style="color: #800080; font-weight: bold">@@ -1545,9 +1548,10 @@ static FIO_SIG_LOAD_FUNCTION(ftdm_sangoma_ss7_init)</span>
        sng_event.sm.sng_mtp3_alarm = handle_sng_mtp3_alarm;
        sng_event.sm.sng_isup_alarm = handle_sng_isup_alarm;
        sng_event.sm.sng_cc_alarm = handle_sng_cc_alarm;
<span style="color: #00A000">+        sng_event.sm.sng_relay_alarm = handle_sng_relay_alarm;</span>
        /* initalize sng_ss7 library */
<span style="color: #A00000">-        sng_isup_init (&sng_event);</span>
<span style="color: #00A000">+        sng_isup_init_gen(&sng_event);</span>
        /* print the version of the library being used */
        sng_isup_version(&major, &minor, &build);
<span style="color: #800080; font-weight: bold">@@ -1566,7 +1570,32 @@ static FIO_SIG_UNLOAD_FUNCTION(ftdm_sangoma_ss7_unload)</span>
        ftdm_log (FTDM_LOG_INFO, "Starting ftmod_sangoma_ss7 unload...\n");
<span style="color: #A00000">-        sng_isup_free();</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_CC)) {</span>
<span style="color: #00A000">+                sng_isup_free_cc();</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP)) {</span>
<span style="color: #00A000">+                ftmod_ss7_shutdown_isup();</span>
<span style="color: #00A000">+                sng_isup_free_isup();</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP3)) {</span>
<span style="color: #00A000">+                ftmod_ss7_shutdown_mtp3();</span>
<span style="color: #00A000">+                sng_isup_free_mtp3();</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP2)) {</span>
<span style="color: #00A000">+                ftmod_ss7_shutdown_mtp2();</span>
<span style="color: #00A000">+                sng_isup_free_mtp2();</span>
<span style="color: #00A000">+                sng_isup_free_mtp1();</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ftmod_ss7_shutdown_relay();</span>
<span style="color: #00A000">+        sng_isup_free_relay();</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sng_isup_free_sm();</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sng_isup_free_gen();</span>
        ftdm_log (FTDM_LOG_INFO, "Finished ftmod_sangoma_ss7 unload!\n");
        return FTDM_SUCCESS;
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h</span>
<span style="color: #000080; font-weight: bold">index f28547f..5272aa8 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h</span>
<span style="color: #800080; font-weight: bold">@@ -83,12 +83,6 @@ typedef enum {</span>
} sng_ckt_type_t;
typedef enum {
<span style="color: #A00000">-        CONFIGURED                = (1 << 0),</span>
<span style="color: #A00000">-        ACTIVE                        = (1 << 1),</span>
<span style="color: #A00000">-        SNGSS7_PAUSED        = (1 << 7)</span>
<span style="color: #A00000">-} sng_flag_t;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-typedef enum {</span>
        SNGSS7_LPA_FOR_COT                = (1 << 0),        /* send LPA when COT arrives */
        SNGSS7_ACM_OBCI_BITA        = (1 << 10)        /* in-band indication */
} sng_intf_options_t;
<span style="color: #800080; font-weight: bold">@@ -98,84 +92,124 @@ typedef enum {</span>
        SNG_CALLING                        = 2
} sng_addr_type_t;
<span style="color: #A00000">-typedef struct sng_mtp_link {</span>
<span style="color: #A00000">-        char                        name[MAX_NAME_LEN];</span>
<span style="color: #A00000">-        uint32_t                id;</span>
<span style="color: #A00000">-        uint32_t                flags;</span>
<span style="color: #A00000">-        struct {</span>
<span style="color: #A00000">-                uint32_t        span;</span>
<span style="color: #A00000">-                uint32_t        chan;</span>
<span style="color: #A00000">-        } mtp1;</span>
<span style="color: #A00000">-        struct {</span>
<span style="color: #A00000">-                uint32_t        lssuLength;</span>
<span style="color: #A00000">-                uint32_t        errorType;</span>
<span style="color: #A00000">-                uint32_t        linkType;</span>
<span style="color: #A00000">-                uint32_t        mtp1Id;</span>
<span style="color: #A00000">-                uint32_t        t1;</span>
<span style="color: #A00000">-                uint32_t        t2;</span>
<span style="color: #A00000">-                uint32_t        t3;</span>
<span style="color: #A00000">-                uint32_t        t4n;</span>
<span style="color: #A00000">-                uint32_t        t4e;</span>
<span style="color: #A00000">-                uint32_t        t5;</span>
<span style="color: #A00000">-                uint32_t        t6;</span>
<span style="color: #A00000">-                uint32_t        t7;</span>
<span style="color: #A00000">-        } mtp2;</span>
<span style="color: #A00000">-        struct {</span>
<span style="color: #A00000">-                uint32_t        priority;</span>
<span style="color: #A00000">-                uint32_t        linkType;</span>
<span style="color: #A00000">-                uint32_t        switchType;</span>
<span style="color: #A00000">-                uint32_t        apc;</span>
<span style="color: #A00000">-                uint32_t        spc;</span>
<span style="color: #A00000">-                uint32_t        ssf;</span>
<span style="color: #A00000">-                uint32_t        slc;</span>
<span style="color: #A00000">-                uint32_t        linkSetId;</span>
<span style="color: #A00000">-                uint32_t        mtp2Id;</span>
<span style="color: #A00000">-                uint32_t        t1;</span>
<span style="color: #A00000">-                uint32_t        t2;</span>
<span style="color: #A00000">-                uint32_t        t3;</span>
<span style="color: #A00000">-                uint32_t        t4;</span>
<span style="color: #A00000">-                uint32_t        t5;</span>
<span style="color: #A00000">-                uint32_t        t6;</span>
<span style="color: #A00000">-                uint32_t        t7;</span>
<span style="color: #A00000">-                uint32_t        t8;</span>
<span style="color: #A00000">-                uint32_t        t9;</span>
<span style="color: #A00000">-                uint32_t        t10;</span>
<span style="color: #A00000">-                uint32_t        t11;</span>
<span style="color: #A00000">-                uint32_t        t12;</span>
<span style="color: #A00000">-                uint32_t        t13;</span>
<span style="color: #A00000">-                uint32_t        t14;</span>
<span style="color: #A00000">-                uint32_t        t15;</span>
<span style="color: #A00000">-                uint32_t        t16;</span>
<span style="color: #A00000">-                uint32_t        t17;</span>
<span style="color: #A00000">-                uint32_t        t18;</span>
<span style="color: #A00000">-                uint32_t        t19;</span>
<span style="color: #A00000">-                uint32_t        t20;</span>
<span style="color: #A00000">-                uint32_t        t21;</span>
<span style="color: #A00000">-                uint32_t        t22;</span>
<span style="color: #A00000">-                uint32_t        t23;</span>
<span style="color: #A00000">-                uint32_t        t24;</span>
<span style="color: #A00000">-                uint32_t        t25;</span>
<span style="color: #A00000">-                uint32_t        t27;</span>
<span style="color: #A00000">-                uint32_t        t28;</span>
<span style="color: #A00000">-                uint32_t        t29;</span>
<span style="color: #A00000">-                uint32_t        t30;</span>
<span style="color: #A00000">-                uint32_t        t31;</span>
<span style="color: #A00000">-                uint32_t        t32;</span>
<span style="color: #A00000">-                uint32_t        t33;</span>
<span style="color: #A00000">-                uint32_t        t34;</span>
<span style="color: #A00000">-                uint32_t        t35;</span>
<span style="color: #A00000">-                uint32_t        t36;</span>
<span style="color: #A00000">-                uint32_t        t37;</span>
<span style="color: #A00000">-                uint32_t        tcraft;</span>
<span style="color: #A00000">-                uint32_t        tflc;</span>
<span style="color: #A00000">-                uint32_t        tbnd;</span>
<span style="color: #A00000">-        } mtp3;</span>
<span style="color: #A00000">-} sng_mtp_link_t;</span>
<span style="color: #00A000">+typedef struct sng_mtp2_error_type {</span>
<span style="color: #00A000">+        int        init;</span>
<span style="color: #00A000">+        char sng_type[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t tril_type;</span>
<span style="color: #00A000">+} sng_mtp2_error_type_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_link_type {</span>
<span style="color: #00A000">+        int init;</span>
<span style="color: #00A000">+        char sng_type[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t tril_mtp2_type;</span>
<span style="color: #00A000">+        uint32_t tril_mtp3_type;</span>
<span style="color: #00A000">+} sng_link_type_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_switch_type {</span>
<span style="color: #00A000">+        int init;</span>
<span style="color: #00A000">+        char sng_type[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t tril_mtp3_type;</span>
<span style="color: #00A000">+        uint32_t tril_isup_type;</span>
<span style="color: #00A000">+} sng_switch_type_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_ssf_type {</span>
<span style="color: #00A000">+        int init;</span>
<span style="color: #00A000">+        char sng_type[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t tril_type;</span>
<span style="color: #00A000">+} sng_ssf_type_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_cic_cntrl_type {</span>
<span style="color: #00A000">+        int init;</span>
<span style="color: #00A000">+        char sng_type[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t tril_type;</span>
<span style="color: #00A000">+} sng_cic_cntrl_type_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_mtp1_link {</span>
<span style="color: #00A000">+        char                name[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t        flags;</span>
<span style="color: #00A000">+        uint32_t        id;</span>
<span style="color: #00A000">+        uint32_t        span;</span>
<span style="color: #00A000">+        uint32_t        chan;</span>
<span style="color: #00A000">+} sng_mtp1_link_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_mtp2_link {</span>
<span style="color: #00A000">+        char                name[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t        flags;</span>
<span style="color: #00A000">+        uint32_t        id;</span>
<span style="color: #00A000">+        uint32_t        lssuLength;</span>
<span style="color: #00A000">+        uint32_t        errorType;</span>
<span style="color: #00A000">+        uint32_t        linkType;</span>
<span style="color: #00A000">+        uint32_t        mtp1Id;</span>
<span style="color: #00A000">+        uint32_t        mtp1ProcId;</span>
<span style="color: #00A000">+        uint32_t        t1;</span>
<span style="color: #00A000">+        uint32_t        t2;</span>
<span style="color: #00A000">+        uint32_t        t3;</span>
<span style="color: #00A000">+        uint32_t        t4n;</span>
<span style="color: #00A000">+        uint32_t        t4e;</span>
<span style="color: #00A000">+        uint32_t        t5;</span>
<span style="color: #00A000">+        uint32_t        t6;</span>
<span style="color: #00A000">+        uint32_t        t7;</span>
<span style="color: #00A000">+} sng_mtp2_link_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_mtp3_link {</span>
<span style="color: #00A000">+        char                name[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t        flags;</span>
<span style="color: #00A000">+        uint32_t        id;</span>
<span style="color: #00A000">+        uint32_t        priority;</span>
<span style="color: #00A000">+        uint32_t        linkType;</span>
<span style="color: #00A000">+        uint32_t        switchType;</span>
<span style="color: #00A000">+        uint32_t        apc;</span>
<span style="color: #00A000">+        uint32_t        spc;</span>
<span style="color: #00A000">+        uint32_t        ssf;</span>
<span style="color: #00A000">+        uint32_t        slc;</span>
<span style="color: #00A000">+        uint32_t        linkSetId;</span>
<span style="color: #00A000">+        uint32_t        mtp2Id;</span>
<span style="color: #00A000">+        uint32_t        mtp2ProcId;</span>
<span style="color: #00A000">+        uint32_t        t1;</span>
<span style="color: #00A000">+        uint32_t        t2;</span>
<span style="color: #00A000">+        uint32_t        t3;</span>
<span style="color: #00A000">+        uint32_t        t4;</span>
<span style="color: #00A000">+        uint32_t        t5;</span>
<span style="color: #00A000">+        uint32_t        t6;</span>
<span style="color: #00A000">+        uint32_t        t7;</span>
<span style="color: #00A000">+        uint32_t        t8;</span>
<span style="color: #00A000">+        uint32_t        t9;</span>
<span style="color: #00A000">+        uint32_t        t10;</span>
<span style="color: #00A000">+        uint32_t        t11;</span>
<span style="color: #00A000">+        uint32_t        t12;</span>
<span style="color: #00A000">+        uint32_t        t13;</span>
<span style="color: #00A000">+        uint32_t        t14;</span>
<span style="color: #00A000">+        uint32_t        t15;</span>
<span style="color: #00A000">+        uint32_t        t16;</span>
<span style="color: #00A000">+        uint32_t        t17;</span>
<span style="color: #00A000">+        uint32_t        t18;</span>
<span style="color: #00A000">+        uint32_t        t19;</span>
<span style="color: #00A000">+        uint32_t        t20;</span>
<span style="color: #00A000">+        uint32_t        t21;</span>
<span style="color: #00A000">+        uint32_t        t22;</span>
<span style="color: #00A000">+        uint32_t        t23;</span>
<span style="color: #00A000">+        uint32_t        t24;</span>
<span style="color: #00A000">+        uint32_t        t25;</span>
<span style="color: #00A000">+        uint32_t        t27;</span>
<span style="color: #00A000">+        uint32_t        t28;</span>
<span style="color: #00A000">+        uint32_t        t29;</span>
<span style="color: #00A000">+        uint32_t        t30;</span>
<span style="color: #00A000">+        uint32_t        t31;</span>
<span style="color: #00A000">+        uint32_t        t32;</span>
<span style="color: #00A000">+        uint32_t        t33;</span>
<span style="color: #00A000">+        uint32_t        t34;</span>
<span style="color: #00A000">+        uint32_t        t35;</span>
<span style="color: #00A000">+        uint32_t        t36;</span>
<span style="color: #00A000">+        uint32_t        t37;</span>
<span style="color: #00A000">+        uint32_t        tcraft;</span>
<span style="color: #00A000">+        uint32_t        tflc;</span>
<span style="color: #00A000">+        uint32_t        tbnd;</span>
<span style="color: #00A000">+} sng_mtp3_link_t;</span>
typedef struct sng_link_set {
<span style="color: #A00000">-        uint32_t                id;</span>
        char                        name[MAX_NAME_LEN];
        uint32_t                flags;
<span style="color: #00A000">+        uint32_t                id;</span>
        uint32_t                apc;
        uint32_t                linkType;
        uint32_t                switchType;
<span style="color: #800080; font-weight: bold">@@ -186,9 +220,9 @@ typedef struct sng_link_set {</span>
} sng_link_set_t;
typedef struct sng_route {
<span style="color: #A00000">-        uint32_t                id;</span>
        char                        name[MAX_NAME_LEN];
        uint32_t                flags;
<span style="color: #00A000">+        uint32_t                id;</span>
        uint32_t                dpc;
        uint32_t                cmbLinkSetId;
        uint32_t                linkSetId;
<span style="color: #800080; font-weight: bold">@@ -211,10 +245,10 @@ typedef struct sng_route {</span>
} sng_route_t;
typedef struct sng_isup_intf {
<span style="color: #A00000">-        uint32_t                id;</span>
        char                        name[MAX_NAME_LEN];
        uint32_t                options;
        uint32_t                flags;
<span style="color: #00A000">+        uint32_t                id;</span>
        uint32_t                spc;
        uint32_t                dpc;
        uint32_t                switchType;
<span style="color: #800080; font-weight: bold">@@ -222,9 +256,6 @@ typedef struct sng_isup_intf {</span>
        uint32_t                mtpRouteId;
        uint32_t                ssf;
        uint32_t                isap;
<span style="color: #A00000">-        uint32_t                clg_nadi;</span>
<span style="color: #A00000">-        uint32_t                cld_nadi;</span>
<span style="color: #A00000">-        uint32_t                min_digits;</span>
        uint16_t                t4;
        uint32_t                t10;
        uint32_t                t11;
<span style="color: #800080; font-weight: bold">@@ -241,7 +272,6 @@ typedef struct sng_isup_intf {</span>
        uint32_t                t29;
        uint32_t                t30;
        uint32_t                t32;
<span style="color: #A00000">-        uint32_t                t35;</span>
        uint32_t                t37;
        uint32_t                t38;
        uint32_t                t39;
<span style="color: #800080; font-weight: bold">@@ -251,15 +281,23 @@ typedef struct sng_isup_intf {</span>
} sng_isup_inf_t;
typedef struct sng_isup_ckt {
<span style="color: #A00000">-        uint32_t                id;</span>
<span style="color: #00A000">+        uint32_t                options;</span>
        uint32_t                flags;
<span style="color: #00A000">+        uint32_t                ckt_flags;</span>
<span style="color: #00A000">+        uint32_t                procId;</span>
<span style="color: #00A000">+        uint32_t                id;</span>
<span style="color: #00A000">+        uint32_t                ccSpanId;</span>
        uint32_t                span;
        uint32_t                chan;
        uint32_t                type;        /* VOICE/SIG/HOLE */
        uint32_t                cic;
        uint32_t                infId;
<span style="color: #A00000">-        uint32_t                ssf;</span>
        uint32_t                typeCntrl;
<span style="color: #00A000">+        uint32_t                ssf;</span>
<span style="color: #00A000">+        uint32_t                switchType;</span>
<span style="color: #00A000">+        uint32_t                clg_nadi;</span>
<span style="color: #00A000">+        uint32_t                cld_nadi;</span>
<span style="color: #00A000">+        uint32_t                min_digits;</span>
        void                        *obj;
        uint16_t                t3;
        uint16_t                t12;
<span style="color: #800080; font-weight: bold">@@ -268,12 +306,13 @@ typedef struct sng_isup_ckt {</span>
        uint16_t                t15;
        uint16_t                t16;
        uint16_t                t17;
<span style="color: #00A000">+        uint32_t                t35;</span>
        uint16_t                tval;
} sng_isup_ckt_t;
typedef struct sng_nsap {
<span style="color: #A00000">-        uint32_t                id;</span>
        uint32_t                flags;
<span style="color: #00A000">+        uint32_t                id;</span>
        uint32_t                suId;
        uint32_t                spId;
        uint32_t                nwId;
<span style="color: #800080; font-weight: bold">@@ -311,15 +350,30 @@ typedef struct sng_isap {</span>
        uint32_t                tfnlrelrsp;
} sng_isap_t;
<span style="color: #00A000">+typedef struct sng_relay {</span>
<span style="color: #00A000">+        uint32_t                id;</span>
<span style="color: #00A000">+        char                        name[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t                flags;</span>
<span style="color: #00A000">+        uint32_t                type;</span>
<span style="color: #00A000">+        uint32_t                port;</span>
<span style="color: #00A000">+        char                        hostname[RY_REMHOSTNAME_SIZE];</span>
<span style="color: #00A000">+        uint32_t                procId;</span>
<span style="color: #00A000">+} sng_relay_t;</span>
<span style="color: #00A000">+</span>
typedef struct sng_ss7_cfg {
        uint32_t                        spc;
<span style="color: #00A000">+        uint32_t                        procId;</span>
        char                                license[MAX_PATH];
        char                                signature[MAX_PATH];
<span style="color: #A00000">-        sng_mtp_link_t                mtpLink[MAX_MTP_LINKS+1];</span>
<span style="color: #00A000">+        uint32_t                        flags;</span>
<span style="color: #00A000">+        sng_relay_t                        relay[MAX_RELAY_CHANNELS+1];</span>
<span style="color: #00A000">+        sng_mtp1_link_t                mtp1Link[MAX_MTP_LINKS+1];</span>
<span style="color: #00A000">+        sng_mtp2_link_t                mtp2Link[MAX_MTP_LINKS+1];</span>
<span style="color: #00A000">+        sng_mtp3_link_t                mtp3Link[MAX_MTP_LINKS+1];</span>
        sng_link_set_t                mtpLinkSet[MAX_MTP_LINKSETS+1];
        sng_route_t                        mtpRoute[MAX_MTP_ROUTES+1];
        sng_isup_inf_t                isupIntf[MAX_ISUP_INFS+1];
<span style="color: #A00000">-        sng_isup_ckt_t                isupCkt[MAX_ISUP_CKTS+1];</span>
<span style="color: #00A000">+        sng_isup_ckt_t                isupCkt[10000];         /* KONRAD - only need 2000 ( and 0-1000 aren't used) since other servers are registerd else where */</span>
        sng_nsap_t                        nsap[MAX_NSAPS+1];
        sng_isap_t                        isap[MAX_ISAPS+1];        
}sng_ss7_cfg_t;
<span style="color: #800080; font-weight: bold">@@ -365,7 +419,7 @@ typedef struct sngss7_chan_data {</span>
        uint32_t                                spInstId;
        uint32_t                                spId;
        uint8_t                                        globalFlg;
<span style="color: #A00000">-        uint32_t                                flags;</span>
<span style="color: #00A000">+        uint32_t                                ckt_flags;</span>
        sngss7_glare_data_t                glare;
        sngss7_timer_data_t                t35;
}sngss7_chan_data_t;
<span style="color: #800080; font-weight: bold">@@ -407,8 +461,6 @@ typedef struct sngss7_event_data</span>
} sngss7_event_data_t;
<span style="color: #A00000">-</span>
<span style="color: #A00000">-</span>
typedef enum {
        FLAG_RESET_RX                        = (1 << 0),
        FLAG_RESET_TX                        = (1 << 1),
<span style="color: #800080; font-weight: bold">@@ -439,15 +491,39 @@ typedef enum {</span>
        FLAG_GRP_MN_BLOCK_RX        = (1 << 26),
        FLAG_GRP_MN_BLOCK_TX        = (1 << 27),
        FLAG_GRP_HW_UNBLK_TX        = (1 << 28),
<span style="color: #A00000">-        FLAG_GRP_MN_UNBLK_TX        = (1 << 29)</span>
<span style="color: #A00000">-} flag_t;</span>
<span style="color: #00A000">+        FLAG_GRP_MN_UNBLK_TX        = (1 << 29),</span>
<span style="color: #00A000">+        FLAG_RELAY_DOWN                        = (1 << 30)</span>
<span style="color: #00A000">+} sng_ckt_flag_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* valid for every cfg array except circuits */</span>
<span style="color: #00A000">+typedef enum {</span>
<span style="color: #00A000">+        SNGSS7_CONFIGURED                = (1 << 0),</span>
<span style="color: #00A000">+        SNGSS7_ACTIVE                        = (1 << 1),</span>
<span style="color: #00A000">+        SNGSS7_RELAY_INIT                = (1 << 3),</span>
<span style="color: #00A000">+        SNGSS7_PAUSED                        = (1 << 7) /* for isup interfaces */</span>
<span style="color: #00A000">+} sng_cfg_flag_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef enum {</span>
<span style="color: #00A000">+        SNGSS7_SM                = (1 << 0),</span>
<span style="color: #00A000">+        SNGSS7_RY                = (1 << 1),</span>
<span style="color: #00A000">+        SNGSS7_MTP1                = (1 << 2),</span>
<span style="color: #00A000">+        SNGSS7_MTP2                = (1 << 3),</span>
<span style="color: #00A000">+        SNGSS7_MTP3                = (1 << 4),</span>
<span style="color: #00A000">+        SNGSS7_ISUP                = (1 << 5),</span>
<span style="color: #00A000">+        SNGSS7_CC                = (1 << 6)</span>
<span style="color: #00A000">+} sng_task_flag_t;</span>
/******************************************************************************/
/* GLOBALS ********************************************************************/
<span style="color: #A00000">-extern ftdm_sngss7_data_t g_ftdm_sngss7_data;</span>
<span style="color: #A00000">-extern uint32_t                         sngss7_id;</span>
<span style="color: #A00000">-extern ftdm_sched_t                 *sngss7_sched;</span>
<span style="color: #A00000">-extern int                                cmbLinkSetId;</span>
<span style="color: #00A000">+extern ftdm_sngss7_data_t                g_ftdm_sngss7_data;</span>
<span style="color: #00A000">+extern sng_ssf_type_t                        sng_ssf_type_map[];</span>
<span style="color: #00A000">+extern sng_switch_type_t                sng_switch_type_map[];</span>
<span style="color: #00A000">+extern sng_link_type_t                        sng_link_type_map[];</span>
<span style="color: #00A000">+extern sng_mtp2_error_type_t        sng_mtp2_error_type_map[];</span>
<span style="color: #00A000">+extern sng_cic_cntrl_type_t         sng_cic_cntrl_type_map[];</span>
<span style="color: #00A000">+extern uint32_t                                        sngss7_id;</span>
<span style="color: #00A000">+extern ftdm_sched_t                                *sngss7_sched;</span>
<span style="color: #00A000">+extern int                                                cmbLinkSetId;</span>
/******************************************************************************/
/* PROTOTYPES *****************************************************************/
<span style="color: #800080; font-weight: bold">@@ -461,6 +537,12 @@ void handle_sng_mtp2_alarm(Pst *pst, SdMngmt *sta);</span>
void handle_sng_mtp3_alarm(Pst *pst, SnMngmt *sta);
void handle_sng_isup_alarm(Pst *pst, SiMngmt *sta);
void handle_sng_cc_alarm(Pst *pst, CcMngmt *sta);
<span style="color: #00A000">+void handle_sng_relay_alarm(Pst *pst, RyMngmt *sta);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* in ftmod_sangoma_ss7_relay.c */</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_connect(RyMngmt *sta);</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_disconnect_on_down(RyMngmt *sta);</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_disconnect_on_error(RyMngmt *sta);</span>
/* in ftmod_sangoma_ss7_cfg.c */
int ft_to_sngss7_cfg_all(void);
<span style="color: #800080; font-weight: bold">@@ -484,20 +566,36 @@ int ftmod_ss7_cc_isap_config(int id);</span>
/* in ftmod_sangoma_ss7_cntrl.c */
int ft_to_sngss7_activate_all(void);
<span style="color: #A00000">-int ftmod_ss7_inhibit_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_uninhibit_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_activate_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_deactivate_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_deactivate2_mtplink(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_inhibit_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_uninhibit_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_bind_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_unbind_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_activate_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_deactivate2_mtp3link(uint32_t id);</span>
int ftmod_ss7_activate_mtplinkSet(uint32_t id);
int ftmod_ss7_deactivate_mtplinkSet(uint32_t id);
int ftmod_ss7_deactivate2_mtplinkSet(uint32_t id);
<span style="color: #A00000">-int ftmod_ss7_lpo_mtplink(uint32_t id);</span>
<span style="color: #A00000">-int ftmod_ss7_lpr_mtplink(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_lpo_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+int ftmod_ss7_lpr_mtp3link(uint32_t id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_isup(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp3(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_mtp2(void);</span>
<span style="color: #00A000">+int ftmod_ss7_shutdown_relay(void);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp3Link(uint32_t procId);</span>
<span style="color: #00A000">+int ftmod_ss7_enable_grp_mtp3Link(uint32_t procId);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int ftmod_ss7_disable_grp_mtp2Link(uint32_t procId);</span>
/* in ftmod_sangoma_ss7_sta.c */
<span style="color: #A00000">-int ftmod_ss7_mtplink_sta(uint32_t id, SnMngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp1link_sta(uint32_t id, L1Mngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp2link_sta(uint32_t id, SdMngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp3link_sta(uint32_t id, SnMngmt *cfm);</span>
int ftmod_ss7_mtplinkSet_sta(uint32_t id, SnMngmt *cfm);
<span style="color: #00A000">+int ftmod_ss7_isup_intf_sta(uint32_t id, uint8_t *status);</span>
<span style="color: #00A000">+int ftmod_ss7_relay_status(uint32_t id, RyMngmt *cfm);</span>
/* in ftmod_sangoma_ss7_out.c */
<span style="color: #800080; font-weight: bold">@@ -607,6 +705,14 @@ ftdm_status_t clear_tx_grs_data(sngss7_chan_data_t *sngss7_info);</span>
ftdm_status_t encode_subAddrIE_nsap(const char *subAddr, char *subAddrIE, int type);
ftdm_status_t encode_subAddrIE_nat(const char *subAddr, char *subAddrIE, int type);
<span style="color: #00A000">+int find_mtp2_error_type_in_map(const char *err_type);</span>
<span style="color: #00A000">+int find_link_type_in_map(const char *linkType);</span>
<span style="color: #00A000">+int find_switch_type_in_map(const char *switchType);</span>
<span style="color: #00A000">+int find_ssf_type_in_map(const char *ssfType);</span>
<span style="color: #00A000">+int find_cic_cntrl_in_map(const char *cntrlType);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+ftdm_status_t check_status_of_all_isup_intf(void);</span>
<span style="color: #00A000">+</span>
/* in ftmod_sangoma_ss7_timers.c */
void handle_isup_t35(void *userdata);
/******************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -739,6 +845,10 @@ void handle_isup_t35(void *userdata);</span>
#define sngss7_clear_flag(obj, flag) ((obj)->flags &= ~(flag))
#define sngss7_set_flag(obj, flag) ((obj)->flags |= (flag))
<span style="color: #00A000">+#define sngss7_test_ckt_flag(obj, flag) ((obj)->ckt_flags & flag)</span>
<span style="color: #00A000">+#define sngss7_clear_ckt_flag(obj, flag) ((obj)->ckt_flags &= ~(flag))</span>
<span style="color: #00A000">+#define sngss7_set_ckt_flag(obj, flag) ((obj)->ckt_flags |= (flag))</span>
<span style="color: #00A000">+</span>
#define sngss7_test_options(obj, option) ((obj)->options & option)
#define sngss7_clear_options(obj, option) ((obj)->options &= ~(option))
#define sngss7_set_options(obj, option) ((obj)->options |= (option))
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_out.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_out.c</span>
<span style="color: #000080; font-weight: bold">index ec8d7df..06b0b21 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_out.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_out.c</span>
<span style="color: #800080; font-weight: bold">@@ -125,9 +125,9 @@ void ft_to_sngss7_iam (ftdm_channel_t * ftdmchan)</span>
        iam.txMedReq.trMedReq.pres                         = PRSNT_NODEF;
        iam.txMedReq.trMedReq.val                         = ftdmchan->caller_data.bearer_capability;
<span style="color: #A00000">-        if ((g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId].switchType == LSI_SW_ANS88) ||</span>
<span style="color: #A00000">-                (g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId].switchType == LSI_SW_ANS92) ||</span>
<span style="color: #A00000">-                (g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId].switchType == LSI_SW_ANS95)) {</span>
<span style="color: #00A000">+        if ((g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].switchType == LSI_SW_ANS88) ||</span>
<span style="color: #00A000">+                (g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].switchType == LSI_SW_ANS92) ||</span>
<span style="color: #00A000">+                (g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].switchType == LSI_SW_ANS95)) {</span>
                /* include only if we're running ANSI */
                iam.fwdCallInd.transCallNInd.pres = PRSNT_NODEF;
<span style="color: #800080; font-weight: bold">@@ -178,7 +178,7 @@ void ft_to_sngss7_iam (ftdm_channel_t * ftdmchan)</span>
                iam.usrServInfoA.rateMultiplier.pres        = PRSNT_NODEF;
                iam.usrServInfoA.rateMultiplier.val                = 0x1;                                /* 1x rate multipler */
        } /* if ANSI */
<span style="color: #A00000">-        </span>
<span style="color: #00A000">+</span>
        /* copy down the called number information */
        copy_cdPtyNum_to_sngss7 (&ftdmchan->caller_data, &iam.cdPtyNum);
        
<span style="color: #800080; font-weight: bold">@@ -192,7 +192,7 @@ void ft_to_sngss7_iam (ftdm_channel_t * ftdmchan)</span>
                SS7_DEBUG_CHAN(ftdmchan,"Found user supplied Calling NADI value \"%s\"\n", clg_nadi);
                iam.cgPtyNum.natAddrInd.val        = atoi(clg_nadi);
        } else {
<span style="color: #A00000">-                iam.cgPtyNum.natAddrInd.val        = g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId].clg_nadi;</span>
<span style="color: #00A000">+                iam.cgPtyNum.natAddrInd.val        = g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].clg_nadi;</span>
                SS7_DEBUG_CHAN(ftdmchan,"No user supplied NADI value found for CLG, using \"%d\"\n", iam.cgPtyNum.natAddrInd.val);
        }
<span style="color: #800080; font-weight: bold">@@ -201,7 +201,7 @@ void ft_to_sngss7_iam (ftdm_channel_t * ftdmchan)</span>
                SS7_DEBUG_CHAN(ftdmchan,"Found user supplied Called NADI value \"%s\"\n", cld_nadi);
                iam.cdPtyNum.natAddrInd.val        = atoi(cld_nadi);
        } else {
<span style="color: #A00000">-                iam.cdPtyNum.natAddrInd.val        = g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId].cld_nadi;</span>
<span style="color: #00A000">+                iam.cdPtyNum.natAddrInd.val        = g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].cld_nadi;</span>
                SS7_DEBUG_CHAN(ftdmchan,"No user supplied NADI value found for CLD, using \"%d\"\n", iam.cdPtyNum.natAddrInd.val);
        }
<span style="color: #800080; font-weight: bold">@@ -310,7 +310,6 @@ void ft_to_sngss7_acm (ftdm_channel_t * ftdmchan)</span>
        SS7_FUNC_TRACE_ENTER (__FUNCTION__);
        
        sngss7_chan_data_t        *sngss7_info = ftdmchan->call_data;
<span style="color: #A00000">-        sng_isup_inf_t                *isup_intf = &g_ftdm_sngss7_data.cfg.isupIntf[sngss7_info->circuit->infId];</span>
        SiCnStEvnt acm;
        
        memset (&acm, 0x0, sizeof (acm));
<span style="color: #800080; font-weight: bold">@@ -360,8 +359,8 @@ void ft_to_sngss7_acm (ftdm_channel_t * ftdmchan)</span>
        acm.bckCallInd.sccpMethInd.val                = SCCPMTH_NOIND;
        /* fill in any optional parameters */
<span style="color: #A00000">-        if (sngss7_test_options(isup_intf, SNGSS7_ACM_OBCI_BITA)) {</span>
<span style="color: #A00000">-                SS7_DEBUG_CHAN(ftdmchan, "Found ACM_OBCI_BITA flag:0x%X\n", isup_intf->options);</span>
<span style="color: #00A000">+        if (sngss7_test_options(&g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id], SNGSS7_ACM_OBCI_BITA)) {</span>
<span style="color: #00A000">+                SS7_DEBUG_CHAN(ftdmchan, "Found ACM_OBCI_BITA flag:0x%X\n", g_ftdm_sngss7_data.cfg.isupCkt[sngss7_info->circuit->id].options);</span>
                acm.optBckCalInd.eh.pres                                = PRSNT_NODEF;
                acm.optBckCalInd.inbndInfoInd.pres                = PRSNT_NODEF;
                acm.optBckCalInd.inbndInfoInd.val                = 0x1;
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c</span>
new file mode 100644
<span style="color: #000080; font-weight: bold">index 0000000..05ea69e</span>
<span style="color: #A00000">--- /dev/null</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c</span>
<span style="color: #800080; font-weight: bold">@@ -0,0 +1,318 @@</span>
<span style="color: #00A000">+/*</span>
<span style="color: #00A000">+ * Copyright (c) 2009|Konrad Hammel <konrad@sangoma.com></span>
<span style="color: #00A000">+ * All rights reserved.</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ * Redistribution and use in source and binary forms|with or without</span>
<span style="color: #00A000">+ * modification|are permitted provided that the following conditions</span>
<span style="color: #00A000">+ * are met:</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ * * Redistributions of source code must retain the above copyright</span>
<span style="color: #00A000">+ * notice|this list of conditions and the following disclaimer.</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ * * Redistributions in binary form must reproduce the above copyright</span>
<span style="color: #00A000">+ * notice|this list of conditions and the following disclaimer in the</span>
<span style="color: #00A000">+ * documentation and/or other materials provided with the distribution.</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ * * Neither the name of the original author; nor the names of any contributors</span>
<span style="color: #00A000">+ * may be used to endorse or promote products derived from this software</span>
<span style="color: #00A000">+ * without specific prior written permission.</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ *</span>
<span style="color: #00A000">+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</span>
<span style="color: #00A000">+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES|INCLUDING|BUT NOT</span>
<span style="color: #00A000">+ * LIMITED TO|THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR</span>
<span style="color: #00A000">+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER</span>
<span style="color: #00A000">+ * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT|INDIRECT|INCIDENTAL|SPECIAL,</span>
<span style="color: #00A000">+ * EXEMPLARY|OR CONSEQUENTIAL DAMAGES (INCLUDING|BUT NOT LIMITED TO,</span>
<span style="color: #00A000">+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE|DATA|OR</span>
<span style="color: #00A000">+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</span>
<span style="color: #00A000">+ * LIABILITY|WHETHER IN CONTRACT|STRICT LIABILITY|OR TORT (INCLUDING</span>
<span style="color: #00A000">+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</span>
<span style="color: #00A000">+ * SOFTWARE|EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
<span style="color: #00A000">+ */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* INCLUDE ********************************************************************/</span>
<span style="color: #00A000">+#include "ftmod_sangoma_ss7_main.h"</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* DEFINES ********************************************************************/</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* GLOBALS ********************************************************************/</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* PROTOTYPES *****************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_connect(RyMngmt *sta);</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_disconnect(RyMngmt *sta);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+static ftdm_status_t enable_all_ckts_for_relay(void);</span>
<span style="color: #00A000">+static ftdm_status_t reconfig_all_ckts_for_relay(void);</span>
<span style="color: #00A000">+static ftdm_status_t disable_all_ckts_for_relay(void);</span>
<span style="color: #00A000">+static ftdm_status_t block_all_ckts_for_relay(uint32_t procId);</span>
<span style="color: #00A000">+static ftdm_status_t disable_all_sigs_for_relay(uint32_t procId);</span>
<span style="color: #00A000">+static ftdm_status_t disble_all_mtp2_sigs_for_relay(void);</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/* FUNCTIONS ******************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_connect(RyMngmt *sta)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_relay_t        *sng_relay = &g_ftdm_sngss7_data.cfg.relay[sta->t.usta.s.ryUpUsta.id];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* test if this is the first time the channel comes up */</span>
<span style="color: #00A000">+        if (!sngss7_test_flag(sng_relay, SNGSS7_RELAY_INIT)) {</span>
<span style="color: #00A000">+                SS7_DEBUG("Relay Channel %d initial connection UP\n", sng_relay->id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* mark the channel as being up */</span>
<span style="color: #00A000">+                sngss7_set_flag(sng_relay, SNGSS7_RELAY_INIT);</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Relay Channel %d connection UP\n", sng_relay->id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* react based on type of channel */</span>
<span style="color: #00A000">+                switch (sng_relay->type) {</span>
<span style="color: #00A000">+                /******************************************************************/</span>
<span style="color: #00A000">+                case (LRY_CT_TCP_CLIENT):</span>
<span style="color: #00A000">+                        /* reconfigure all ISUP ckts, since the main system would have lost all configs */</span>
<span style="color: #00A000">+                        if (reconfig_all_ckts_for_relay()) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Failed to reconfigure ISUP Ckts!\n");</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                                /* we're done....this is very bad! */</span>
<span style="color: #00A000">+                        } else {                                </span>
<span style="color: #00A000">+                                enable_all_ckts_for_relay();</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /******************************************************************/</span>
<span style="color: #00A000">+                case (LRY_CT_TCP_SERVER):</span>
<span style="color: #00A000">+                        /*unblock_all_ckts_for_relay(sta->t.usta.s.ryErrUsta.errPid);*/</span>
<span style="color: #00A000">+                        ftmod_ss7_enable_grp_mtp3Link(sta->t.usta.s.ryUpUsta.id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /******************************************************************/</span>
<span style="color: #00A000">+                default:</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /******************************************************************/</span>
<span style="color: #00A000">+                } /* switch (g_ftdm_sngss7_data.cfg.relay[sta->t.usta.s.ryUpUsta.id].type) */</span>
<span style="color: #00A000">+        } /* intial up? */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_disconnect_on_error(RyMngmt *sta)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check which procId is in error, if it is 1, disable the ckts */</span>
<span style="color: #00A000">+        if (sta->t.usta.s.ryErrUsta.errPid == 1 ) {</span>
<span style="color: #00A000">+                disable_all_ckts_for_relay();</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                disble_all_mtp2_sigs_for_relay();</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check if the channel is a server, means we just lost a MGW */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.relay[sta->t.usta.s.ryErrUsta.errPid].type == LRY_CT_TCP_SERVER) {</span>
<span style="color: #00A000">+                block_all_ckts_for_relay(sta->t.usta.s.ryErrUsta.errPid);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                disable_all_sigs_for_relay(sta->t.usta.s.ryErrUsta.errPid);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t handle_relay_disconnect_on_down(RyMngmt *sta)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check if the channel is a server, means we just lost a MGW */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.relay[sta->t.usta.s.ryUpUsta.id].type == LRY_CT_TCP_SERVER) {</span>
<span style="color: #00A000">+                block_all_ckts_for_relay(sta->t.usta.s.ryUpUsta.id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                disable_all_sigs_for_relay(sta->t.usta.s.ryUpUsta.id);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t disable_all_ckts_for_relay(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sngss7_chan_data_t        *sngss7_info = NULL;</span>
<span style="color: #00A000">+        ftdm_channel_t                *ftdmchan = NULL;</span>
<span style="color: #00A000">+        int                                        x;        </span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        SS7_INFO("Disabling all ckts becuase of Relay loss\n");</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+        /**********************************************************************/</span>
<span style="color: #00A000">+                /* make sure this is voice channel */</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                        /* get the ftdmchan and ss7_chan_data from the circuit */</span>
<span style="color: #00A000">+                        if (extract_chan_data(g_ftdm_sngss7_data.cfg.isupCkt[x].id, &sngss7_info, &ftdmchan)) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Failed to extract channel data for circuit = %d!\n", g_ftdm_sngss7_data.cfg.isupCkt[x].id);</span>
<span style="color: #00A000">+                                x++;</span>
<span style="color: #00A000">+                                continue;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* throw the relay_down flag */</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_RELAY_DOWN);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* throw the channel infId status flags to PAUSED ... they will be executed next process cycle */</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move along */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        /**********************************************************************/</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t enable_all_ckts_for_relay(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sngss7_chan_data_t        *sngss7_info = NULL;</span>
<span style="color: #00A000">+        sng_isup_inf_t                *sngIntf = NULL;</span>
<span style="color: #00A000">+        ftdm_channel_t                *ftdmchan = NULL;</span>
<span style="color: #00A000">+        int                                        x;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        SS7_INFO("Enabling all ckts becuase of Relay connection\n");</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+        /**********************************************************************/</span>
<span style="color: #00A000">+                /* make sure this is voice channel */</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                        /* get the ftdmchan and ss7_chan_data from the circuit */</span>
<span style="color: #00A000">+                        if (extract_chan_data(g_ftdm_sngss7_data.cfg.isupCkt[x].id, &sngss7_info, &ftdmchan)) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Failed to extract channel data for circuit = %d!\n", g_ftdm_sngss7_data.cfg.isupCkt[x].id);</span>
<span style="color: #00A000">+                                x++;</span>
<span style="color: #00A000">+                                continue;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* bring the relay_down flag down */</span>
<span style="color: #00A000">+                        sngss7_clear_ckt_flag(sngss7_info, FLAG_RELAY_DOWN);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        sngIntf = &g_ftdm_sngss7_data.cfg.isupIntf[g_ftdm_sngss7_data.cfg.isupCkt[x].infId];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* check if the interface is paused or resumed */</span>
<span style="color: #00A000">+                        if (sngss7_test_flag(sngIntf, SNGSS7_PAUSED)) {</span>
<span style="color: #00A000">+                                /* don't bring the channel resume flag up...the interface is down */</span>
<span style="color: #00A000">+                                SS7_DEBUG_CHAN(ftdmchan, "ISUP interface (%d) set to paused, not resuming channel\n", sngIntf->id);</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_DEBUG_CHAN(ftdmchan, "ISUP interface (%d) set to resume, resuming channel\n", sngIntf->id);</span>
<span style="color: #00A000">+                                /* throw the channel infId status flags to PAUSED ... they will be executed next process cycle */</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_RESUME);</span>
<span style="color: #00A000">+                                sngss7_set_ckt_flag(sngss7_info, FLAG_INFID_PAUSED);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move along */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        /**********************************************************************/</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t reconfig_all_ckts_for_relay(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+#if 1</span>
<span style="color: #00A000">+        int x;</span>
<span style="color: #00A000">+        int ret;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+                if ( g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+                        ret = ftmod_ss7_isup_ckt_config(x);</span>
<span style="color: #00A000">+                        if (ret) {</span>
<span style="color: #00A000">+                                SS7_CRITICAL("ISUP CKT %d configuration FAILED (%d)!\n", x, ret);</span>
<span style="color: #00A000">+                                return 1;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_INFO("ISUP CKT %d configuration DONE!\n", x);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                } /* if ( g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* set the SNGSS7_CONFIGURED flag */</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].flags |= SNGSS7_CONFIGURED;</span>
<span style="color: #00A000">+                </span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+#endif</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t block_all_ckts_for_relay(uint32_t procId)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int x;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        SS7_INFO("BLOcking all ckts on ProcID = %d\n", procId);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* we just lost connection to this procId, send out a block for all these circuits */</span>
<span style="color: #00A000">+        x = (procId * 1000) + 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) {</span>
<span style="color: #00A000">+                        /* send out a BLO */</span>
<span style="color: #00A000">+                        sng_cc_sta_request (1,</span>
<span style="color: #00A000">+                                                                0,</span>
<span style="color: #00A000">+                                                                0,</span>
<span style="color: #00A000">+                                                                g_ftdm_sngss7_data.cfg.isupCkt[x].id,</span>
<span style="color: #00A000">+                                                                0, </span>
<span style="color: #00A000">+                                                                SIT_STA_CIRBLOREQ, </span>
<span style="color: #00A000">+                                                                NULL);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].type == VOICE) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move along */</span>
<span style="color: #00A000">+                x++;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t disable_all_sigs_for_relay(uint32_t procId)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SS7_INFO("Disalbing all sig links on ProcID = %d\n", procId);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ftmod_ss7_disable_grp_mtp3Link(procId);</span>
<span style="color: #00A000">+        </span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t disble_all_mtp2_sigs_for_relay(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        /* check if there is a local mtp2 link*/</span>
<span style="color: #00A000">+        if (sngss7_test_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP2)) {</span>
<span style="color: #00A000">+                SS7_INFO("Disalbing all mtp2 sig links on local system\n");</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                ftmod_ss7_disable_grp_mtp2Link(1);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+/* For Emacs:</span>
<span style="color: #00A000">+ * Local Variables:</span>
<span style="color: #00A000">+ * mode:c</span>
<span style="color: #00A000">+ * indent-tabs-mode:t</span>
<span style="color: #00A000">+ * tab-width:4</span>
<span style="color: #00A000">+ * c-basic-offset:4</span>
<span style="color: #00A000">+ * End:</span>
<span style="color: #00A000">+ * For VIM:</span>
<span style="color: #00A000">+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4:</span>
<span style="color: #00A000">+ */</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c</span>
<span style="color: #000080; font-weight: bold">index 1235238..2f507a2 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c</span>
<span style="color: #800080; font-weight: bold">@@ -42,12 +42,43 @@</span>
/******************************************************************************/
/* PROTOTYPES *****************************************************************/
<span style="color: #A00000">-int ftmod_ss7_mtplink_sta(uint32_t id, SnMngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp1link_sta(uint32_t id, L1Mngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp2link_sta(uint32_t id, SdMngmt *cfm);</span>
<span style="color: #00A000">+int ftmod_ss7_mtp3link_sta(uint32_t id, SnMngmt *cfm);</span>
int ftmod_ss7_mtplinkSet_sta(uint32_t id, SnMngmt *cfm);
<span style="color: #00A000">+int ftmod_ss7_isup_intf_sta(uint32_t id, uint8_t *status);</span>
<span style="color: #00A000">+int ftmod_ss7_relay_status(uint32_t id, RyMngmt *cfm);</span>
/******************************************************************************/
/* FUNCTIONS ******************************************************************/
<span style="color: #A00000">-int ftmod_ss7_mtplink_sta(uint32_t id, SnMngmt *cfm)</span>
<span style="color: #00A000">+int ftmod_ss7_mtp1link_sta(uint32_t id, L1Mngmt *cfm)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return 1;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_mtp2link_sta(uint32_t id, SdMngmt *cfm)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SdMngmt        sta;</span>
<span style="color: #00A000">+        Pst                pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        memset(&sta, 0x0, sizeof(sta));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSD;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmnt                 = STDLSAP;</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp2Link[id].id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return(sng_sta_mtp2(&pst, &sta, cfm));</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_mtp3link_sta(uint32_t id, SnMngmt *cfm)</span>
{
        SnMngmt        sta;
        Pst                pst;
<span style="color: #800080; font-weight: bold">@@ -60,8 +91,13 @@ int ftmod_ss7_mtplink_sta(uint32_t id, SnMngmt *cfm)</span>
        /* insert the destination Entity */
        pst.dstEnt = ENTSN;
<span style="color: #00A000">+        /* check the for the correct ProcId and make sure it goes to the right system */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.procId != 1) {</span>
<span style="color: #00A000">+                pst.dstProcId = 1;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        sta.hdr.elmId.elmnt                 = STDLSAP;
<span style="color: #A00000">-        sta.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLink[id].id;</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtp3Link[id].id;</span>
        return(sng_sta_mtp3(&pst, &sta, cfm));
}
<span style="color: #800080; font-weight: bold">@@ -80,13 +116,77 @@ int ftmod_ss7_mtplinkSet_sta(uint32_t id, SnMngmt *cfm)</span>
        /* insert the destination Entity */
        pst.dstEnt = ENTSN;
<span style="color: #00A000">+        /* check the for the correct ProcId and make sure it goes to the right system */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.procId != 1) {</span>
<span style="color: #00A000">+                pst.dstProcId = 1;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        sta.hdr.elmId.elmnt                 = STLNKSET;
        sta.hdr.elmId.elmntInst1        = g_ftdm_sngss7_data.cfg.mtpLinkSet[id].id;
        sta.hdr.elmId.elmntInst2        = g_ftdm_sngss7_data.cfg.mtpLinkSet[id].links[0];
        return(sng_sta_mtp3(&pst, &sta, cfm));
}
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int ftmod_ss7_isup_intf_sta(uint32_t id, uint8_t *status)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        SiMngmt        sta;</span>
<span style="color: #00A000">+        SiMngmt cfm;</span>
<span style="color: #00A000">+        Pst                pst;</span>
<span style="color: #00A000">+        int                ret;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        memset(&sta, 0x0, sizeof(sta));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTSI;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check the for the correct ProcId and make sure it goes to the right system */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.procId != 1) {</span>
<span style="color: #00A000">+                pst.dstProcId = 1;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* request the status of an inftId */</span>
<span style="color: #00A000">+        sta.hdr.entId.ent                        = ENTSI;</span>
<span style="color: #00A000">+        sta.hdr.entId.inst                        = S_INST;</span>
<span style="color: #00A000">+        sta.hdr.msgType                                = TSSTA;</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmnt                 = SI_STINTF;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sta.t.ssta.elmntId.intfId = id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ret = sng_sta_isup(&pst, &sta, &cfm);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        *status = cfm.t.ssta.cfm.s.intf.state;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return(ret);</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
/******************************************************************************/
<span style="color: #00A000">+int ftmod_ss7_relay_status(uint32_t id, RyMngmt *cfm)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        RyMngmt        sta;</span>
<span style="color: #00A000">+        Pst                pst;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        memset(&sta, 0x0, sizeof(sta));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the post structure */</span>
<span style="color: #00A000">+        smPstInit(&pst);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* insert the destination Entity */</span>
<span style="color: #00A000">+        pst.dstEnt = ENTRY;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sta.hdr.entId.ent                        = ENTRY;</span>
<span style="color: #00A000">+        sta.hdr.entId.inst                        = S_INST;</span>
<span style="color: #00A000">+        sta.hdr.msgType                                = TSSTA;</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmnt                 = STCHSTA;</span>
<span style="color: #00A000">+        sta.hdr.elmId.elmntInst1        = id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return(sng_sta_relay(&pst, &sta, cfm));</span>
<span style="color: #00A000">+}</span>
/******************************************************************************/
/* For Emacs:
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_support.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_support.c</span>
<span style="color: #000080; font-weight: bold">index 23617c9..683caf2 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_support.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_support.c</span>
<span style="color: #800080; font-weight: bold">@@ -75,6 +75,14 @@ ftdm_status_t clear_tx_grs_data(sngss7_chan_data_t *sngss7_info);</span>
ftdm_status_t encode_subAddrIE_nsap(const char *subAddr, char *subAddrIE, int type);
ftdm_status_t encode_subAddrIE_nat(const char *subAddr, char *subAddrIE, int type);
<span style="color: #00A000">+</span>
<span style="color: #00A000">+int find_mtp2_error_type_in_map(const char *err_type);</span>
<span style="color: #00A000">+int find_link_type_in_map(const char *linkType);</span>
<span style="color: #00A000">+int find_switch_type_in_map(const char *switchType);</span>
<span style="color: #00A000">+int find_ssf_type_in_map(const char *ssfType);</span>
<span style="color: #00A000">+int find_cic_cntrl_in_map(const char *cntrlType);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+ftdm_status_t check_status_of_all_isup_intf(void);</span>
/******************************************************************************/
/* FUNCTIONS ******************************************************************/
<span style="color: #800080; font-weight: bold">@@ -432,7 +440,7 @@ int check_cics_in_range(sngss7_chan_data_t *sngss7_info)</span>
                        }
                        /* check if the channel still has the reset flag done is up */
<span style="color: #A00000">-                        if (!sngss7_test_flag(tmp_sngss7_info, FLAG_GRP_RESET_RX_DN)) {</span>
<span style="color: #00A000">+                        if (!sngss7_test_ckt_flag(tmp_sngss7_info, FLAG_GRP_RESET_RX_DN)) {</span>
                                SS7_DEBUG_CHAN(tmp_ftdmchan, "[CIC:%d] Still processing reset...\n", tmp_sngss7_info->circuit->cic);
                                return 0;
                        }
<span style="color: #800080; font-weight: bold">@@ -475,19 +483,19 @@ ftdm_status_t extract_chan_data(uint32_t circuit, sngss7_chan_data_t **sngss7_in</span>
int check_for_reset(sngss7_chan_data_t *sngss7_info)
{
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info,FLAG_RESET_RX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info,FLAG_RESET_RX)) {</span>
                return 1;
        }
        
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info,FLAG_RESET_TX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info,FLAG_RESET_TX)) {</span>
                return 1;
        }
        
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info,FLAG_GRP_RESET_RX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info,FLAG_GRP_RESET_RX)) {</span>
                return 1;
        }
        
<span style="color: #A00000">-        if (sngss7_test_flag(sngss7_info,FLAG_GRP_RESET_TX)) {</span>
<span style="color: #00A000">+        if (sngss7_test_ckt_flag(sngss7_info,FLAG_GRP_RESET_TX)) {</span>
                return 1;
        }
<span style="color: #800080; font-weight: bold">@@ -498,11 +506,13 @@ int check_for_reset(sngss7_chan_data_t *sngss7_info)</span>
/******************************************************************************/
unsigned long get_unique_id(void)
{
<span style="color: #00A000">+        int        procId = sng_get_procId(); </span>
<span style="color: #A00000">-        if (sngss7_id < 420000000) {</span>
<span style="color: #00A000">+        /* id values are between (procId * 1,000,000) and ((procId + 1) * 1,000,000) */ </span>
<span style="color: #00A000">+        if (sngss7_id < ((procId + 1) * 1000000) ) {</span>
                sngss7_id++;
        } else {
<span style="color: #A00000">-                sngss7_id = 1;</span>
<span style="color: #00A000">+                sngss7_id = procId * 1000000;</span>
        }
        return(sngss7_id);
<span style="color: #800080; font-weight: bold">@@ -525,7 +535,7 @@ ftdm_status_t check_if_rx_grs_started(ftdm_span_t *ftdmspan)</span>
                }
                /* check if the GRP_RESET_RX flag is already up */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX)) {</span>
                        /* we have already processed this channel...move along */
                        continue;
                }
<span style="color: #800080; font-weight: bold">@@ -543,7 +553,7 @@ ftdm_status_t check_if_rx_grs_started(ftdm_span_t *ftdmspan)</span>
                                (g_ftdm_sngss7_data.cfg.isupCkt[sngss7_span->rx_grs.circuit].cic + sngss7_span->rx_grs.range));
                /* flag the channel as having received a reset */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_RX);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX);</span>
                switch (ftdmchan->state) {
                /**************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -598,10 +608,10 @@ ftdm_status_t check_if_rx_grs_processed(ftdm_span_t *ftdmspan)</span>
                /* check if there is a state change pending on the channel */
                if (!ftdm_test_flag(ftdmchan, FTDM_CHANNEL_STATE_CHANGE)) {
                        /* check the state to the GRP_RESET_RX_DN flag */
<span style="color: #A00000">-                        if (!sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) {</span>
<span style="color: #00A000">+                        if (!sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) {</span>
                                /* this channel is still resetting...do nothing */
                                        goto GRS_UNLOCK_ALL;
<span style="color: #A00000">-                        } /* if (!sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) */</span>
<span style="color: #00A000">+                        } /* if (!sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_DN)) */</span>
                } else {
                        /* state change pending */
                        goto GRS_UNLOCK_ALL;
<span style="color: #800080; font-weight: bold">@@ -625,16 +635,16 @@ ftdm_status_t check_if_rx_grs_processed(ftdm_span_t *ftdmspan)</span>
                }
                /* throw the GRP reset flag complete flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT);</span>
                /* move the channel to the down state */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_DOWN);
                /* update the status map if the ckt is in blocked state */
<span style="color: #A00000">-                if ((sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                        (sngss7_test_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) ||</span>
<span style="color: #A00000">-                        (sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX)) ||</span>
<span style="color: #A00000">-                        (sngss7_test_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
<span style="color: #00A000">+                if ((sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                        (sngss7_test_ckt_flag(sngss7_info, FLAG_CKT_MN_BLOCK_TX)) ||</span>
<span style="color: #00A000">+                        (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX)) ||</span>
<span style="color: #00A000">+                        (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_MN_BLOCK_RX))) {</span>
                
                        sngss7_span->rx_grs.status[byte] = (sngss7_span->rx_grs.status[byte] | (1 << bit));
                } /* if blocked */
<span style="color: #800080; font-weight: bold">@@ -679,7 +689,7 @@ ftdm_status_t check_if_rx_gra_started(ftdm_span_t *ftdmspan)</span>
                }
                /* check if the channel is already procoessing the GRA */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP)) {</span>
                        /* move along */
                        continue;
                }
<span style="color: #800080; font-weight: bold">@@ -701,7 +711,7 @@ ftdm_status_t check_if_rx_gra_started(ftdm_span_t *ftdmspan)</span>
                case FTDM_CHANNEL_STATE_RESTART:
                        
                        /* throw the FLAG_RESET_TX_RSP to indicate we have acknowledgement from the remote side */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
                        /* go to DOWN */
                        ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_DOWN);
<span style="color: #800080; font-weight: bold">@@ -720,7 +730,7 @@ ftdm_status_t check_if_rx_gra_started(ftdm_span_t *ftdmspan)</span>
                case FTDM_CHANNEL_STATE_HANGUP_COMPLETE:
                        
                        /* throw the FLAG_RESET_TX_RSP to indicate we have acknowledgement from the remote side */
<span style="color: #A00000">-                        sngss7_set_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
<span style="color: #00A000">+                        sngss7_set_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
                        break;
                /**********************************************************************/
<span style="color: #800080; font-weight: bold">@@ -775,7 +785,7 @@ ftdm_status_t check_for_res_sus_flag(ftdm_span_t *ftdmspan)</span>
                sigev.channel = ftdmchan;
                /* if we have the PAUSED flag and the sig status is still UP */
<span style="color: #A00000">-                if ((sngss7_test_flag(sngss7_info, FLAG_INFID_PAUSED)) &&</span>
<span style="color: #00A000">+                if ((sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_PAUSED)) &&</span>
                        (ftdm_test_flag(ftdmchan, FTDM_CHANNEL_SIG_UP))) {
                        /* clear up any pending state changes */
<span style="color: #800080; font-weight: bold">@@ -790,7 +800,7 @@ ftdm_status_t check_for_res_sus_flag(ftdm_span_t *ftdmspan)</span>
                /* if the RESUME flag is up go to SUSPENDED to process the flag */
                /* after doing this the flag will be cleared */
<span style="color: #A00000">-                if (sngss7_test_flag(sngss7_info, FLAG_INFID_RESUME)) {</span>
<span style="color: #00A000">+                if (sngss7_test_ckt_flag(sngss7_info, FLAG_INFID_RESUME)) {</span>
                        /* clear up any pending state changes */
                        while (ftdm_test_flag (ftdmchan, FTDM_CHANNEL_STATE_CHANGE)) {
<span style="color: #800080; font-weight: bold">@@ -839,7 +849,7 @@ ftdm_status_t process_span_ucic(ftdm_span_t *ftdmspan)</span>
                }
                /* throw the ckt block flag */
<span style="color: #A00000">-                sngss7_set_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
<span style="color: #00A000">+                sngss7_set_ckt_flag(sngss7_info, FLAG_CKT_UCIC_BLOCK);</span>
                /* set the channel to suspended state */
                ftdm_set_state_locked(ftdmchan, FTDM_CHANNEL_STATE_SUSPENDED);
<span style="color: #800080; font-weight: bold">@@ -858,9 +868,9 @@ ftdm_status_t process_span_ucic(ftdm_span_t *ftdmspan)</span>
ftdm_status_t clear_rx_grs_flags(sngss7_chan_data_t *sngss7_info)
{
        /* clear all the flags related to an incoming GRS */
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_RX);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_RX_DN);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_DN);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_RX_CMPLT);</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -892,10 +902,10 @@ ftdm_status_t clear_rx_gra_data(sngss7_chan_data_t *sngss7_info)</span>
ftdm_status_t clear_tx_grs_flags(sngss7_chan_data_t *sngss7_info)
{
        /* clear all the flags related to an outgoing GRS */
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_BASE);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_SENT);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_BASE);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_SENT);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_GRP_RESET_TX_RSP);</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -918,7 +928,7 @@ ftdm_status_t clear_tx_grs_data(sngss7_chan_data_t *sngss7_info)</span>
ftdm_status_t clear_rx_rsc_flags(sngss7_chan_data_t *sngss7_info)
{
        /* clear all the flags related to an incoming RSC */
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_RESET_RX);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_RESET_RX);</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -927,9 +937,9 @@ ftdm_status_t clear_rx_rsc_flags(sngss7_chan_data_t *sngss7_info)</span>
ftdm_status_t clear_tx_rsc_flags(sngss7_chan_data_t *sngss7_info)
{
        /* clear all the flags related to an outgoing RSC */
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_RESET_SENT);</span>
<span style="color: #A00000">-        sngss7_clear_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_RESET_TX);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_RESET_SENT);</span>
<span style="color: #00A000">+        sngss7_clear_ckt_flag(sngss7_info, FLAG_RESET_TX_RSP);</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -1148,6 +1158,197 @@ ftdm_status_t encode_subAddrIE_nat(const char *subAddr, char *subAddrIE, int typ</span>
}
/******************************************************************************/
<span style="color: #00A000">+int find_mtp2_error_type_in_map(const char *err_type)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (sng_mtp2_error_type_map[i].init == 1) {</span>
<span style="color: #00A000">+                /* check if string matches the sng_type name */ </span>
<span style="color: #00A000">+                if (!strcasecmp(err_type, sng_mtp2_error_type_map[i].sng_type)) {</span>
<span style="color: #00A000">+                        /* we've found a match break from the loop */</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        /* move on to the next on */</span>
<span style="color: #00A000">+                        i++;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        } /* while (sng_mtp2_error_type_map[i].init == 1) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check how we exited the loop */</span>
<span style="color: #00A000">+        if (sng_mtp2_error_type_map[i].init == 0) {</span>
<span style="color: #00A000">+                return -1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                return i;</span>
<span style="color: #00A000">+        } /* if (sng_mtp2_error_type_map[i].init == 0) */</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int find_link_type_in_map(const char *linkType)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (sng_link_type_map[i].init == 1) {</span>
<span style="color: #00A000">+                /* check if string matches the sng_type name */ </span>
<span style="color: #00A000">+                if (!strcasecmp(linkType, sng_link_type_map[i].sng_type)) {</span>
<span style="color: #00A000">+                        /* we've found a match break from the loop */</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        /* move on to the next on */</span>
<span style="color: #00A000">+                        i++;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        } /* while (sng_link_type_map[i].init == 1) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check how we exited the loop */</span>
<span style="color: #00A000">+        if (sng_link_type_map[i].init == 0) {</span>
<span style="color: #00A000">+                return -1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                return i;</span>
<span style="color: #00A000">+        } /* if (sng_link_type_map[i].init == 0) */</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int find_switch_type_in_map(const char *switchType)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (sng_switch_type_map[i].init == 1) {</span>
<span style="color: #00A000">+                /* check if string matches the sng_type name */ </span>
<span style="color: #00A000">+                if (!strcasecmp(switchType, sng_switch_type_map[i].sng_type)) {</span>
<span style="color: #00A000">+                        /* we've found a match break from the loop */</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        /* move on to the next on */</span>
<span style="color: #00A000">+                        i++;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        } /* while (sng_switch_type_map[i].init == 1) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check how we exited the loop */</span>
<span style="color: #00A000">+        if (sng_switch_type_map[i].init == 0) {</span>
<span style="color: #00A000">+                return -1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                return i;</span>
<span style="color: #00A000">+        } /* if (sng_switch_type_map[i].init == 0) */</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int find_ssf_type_in_map(const char *ssfType)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (sng_ssf_type_map[i].init == 1) {</span>
<span style="color: #00A000">+                /* check if string matches the sng_type name */ </span>
<span style="color: #00A000">+                if (!strcasecmp(ssfType, sng_ssf_type_map[i].sng_type)) {</span>
<span style="color: #00A000">+                        /* we've found a match break from the loop */</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        /* move on to the next on */</span>
<span style="color: #00A000">+                        i++;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        } /* while (sng_ssf_type_map[i].init == 1) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check how we exited the loop */</span>
<span style="color: #00A000">+        if (sng_ssf_type_map[i].init == 0) {</span>
<span style="color: #00A000">+                return -1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                return i;</span>
<span style="color: #00A000">+        } /* if (sng_ssf_type_map[i].init == 0) */</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+int find_cic_cntrl_in_map(const char *cntrlType)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (sng_cic_cntrl_type_map[i].init == 1) {</span>
<span style="color: #00A000">+                /* check if string matches the sng_type name */ </span>
<span style="color: #00A000">+                if (!strcasecmp(cntrlType, sng_cic_cntrl_type_map[i].sng_type)) {</span>
<span style="color: #00A000">+                        /* we've found a match break from the loop */</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        /* move on to the next on */</span>
<span style="color: #00A000">+                        i++;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+        } /* while (sng_cic_cntrl_type_map[i].init == 1) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check how we exited the loop */</span>
<span style="color: #00A000">+        if (sng_cic_cntrl_type_map[i].init == 0) {</span>
<span style="color: #00A000">+                return -1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                return i;</span>
<span style="color: #00A000">+        } /* if (sng_cic_cntrl_type_map[i].init == 0) */</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+ftdm_status_t check_status_of_all_isup_intf(void)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_isup_inf_t                *sngss7_intf = NULL;</span>
<span style="color: #00A000">+        uint8_t                                status = 0xff;</span>
<span style="color: #00A000">+        int                                        x;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* go through all the isupIntfs and ask the stack to give their current state */</span>
<span style="color: #00A000">+        x = 1;</span>
<span style="color: #00A000">+        for (x = 1; x < (MAX_ISUP_INFS + 1); x++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.isupIntf[x].id == 0) continue;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                sngss7_intf = &g_ftdm_sngss7_data.cfg.isupIntf[x];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (ftmod_ss7_isup_intf_sta(sngss7_intf->id, &status)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to get status of ISUP intf %d\n", sngss7_intf->id);</span>
<span style="color: #00A000">+                        continue;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                switch (status){</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                case (SI_INTF_AVAIL):</span>
<span style="color: #00A000">+                        SS7_DEBUG("State of ISUP intf %d = AVAIL\n", sngss7_intf->id); </span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* check the current state for interface that we know */</span>
<span style="color: #00A000">+                        if (sngss7_test_flag(sngss7_intf, SNGSS7_PAUSED)) {</span>
<span style="color: #00A000">+                                /* we thing the intf is paused...put into resume */ </span>
<span style="color: #00A000">+                                sngss7_clear_flag(sngss7_intf, SNGSS7_PAUSED);</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                /* nothing to since we already know that interface is active */</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                case (SI_INTF_UNAVAIL):</span>
<span style="color: #00A000">+                        SS7_DEBUG("State of ISUP intf %d = UNAVAIL\n", sngss7_intf->id); </span>
<span style="color: #00A000">+                        /* check the current state for interface that we know */</span>
<span style="color: #00A000">+                        if (sngss7_test_flag(sngss7_intf, SNGSS7_PAUSED)) {</span>
<span style="color: #00A000">+                                /* nothing to since we already know that interface is active */ </span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                /* put the interface into pause */</span>
<span style="color: #00A000">+                                sngss7_set_flag(sngss7_intf, SNGSS7_PAUSED);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                case (SI_INTF_CONG1):</span>
<span style="color: #00A000">+                        SS7_DEBUG("State of ISUP intf %d = Congestion 1\n", sngss7_intf->id);</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                case (SI_INTF_CONG2):</span>
<span style="color: #00A000">+                        SS7_DEBUG("State of ISUP intf %d = Congestion 2\n", sngss7_intf->id);</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                case (SI_INTF_CONG3):</span>
<span style="color: #00A000">+                        SS7_DEBUG("State of ISUP intf %d = Congestion 3\n", sngss7_intf->id);</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                default:</span>
<span style="color: #00A000">+                        /* should do something here to handle the possiblity of an unknown case */</span>
<span style="color: #00A000">+                        SS7_ERROR("Unknown ISUP intf Status code (%d) for Intf = %d\n", status, sngss7_intf->id);</span>
<span style="color: #00A000">+                        break;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } /* switch (status) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (x = 1; x < MAX_ISUP_INFS + 1); i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
/* For Emacs:
* Local Variables:
* mode:c
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_timers.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_timers.c</span>
<span style="color: #000080; font-weight: bold">index 75b32d6..c2d493f 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_timers.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_timers.c</span>
<span style="color: #800080; font-weight: bold">@@ -61,7 +61,7 @@ void handle_isup_t35(void *userdata)</span>
SS7_ERROR("[Call-Control] Timer 35 expired on CIC = %d\n", sngss7_info->circuit->cic);
/* set the flag to indicate this hangup is started from the local side */
<span style="color: #A00000">- sngss7_set_flag(sngss7_info, FLAG_LOCAL_REL);</span>
<span style="color: #00A000">+ sngss7_set_ckt_flag(sngss7_info, FLAG_LOCAL_REL);</span>
/* hang up on timer expiry */
ftdmchan->caller_data.hangup_cause = 28;
<span style="color: #000080; font-weight: bold">diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c</span>
<span style="color: #000080; font-weight: bold">index d4fd1ca..277951c 100644</span>
<span style="color: #A00000">--- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c</span>
<span style="color: #00A000">+++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c</span>
<span style="color: #800080; font-weight: bold">@@ -39,6 +39,60 @@</span>
/******************************************************************************/
/* GLOBALS ********************************************************************/
<span style="color: #00A000">+sng_ssf_type_t sng_ssf_type_map[] =</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        { 1, "nat" , SSF_NAT },</span>
<span style="color: #00A000">+        { 1, "int" , SSF_INTL },</span>
<span style="color: #00A000">+        { 1, "spare" , SSF_SPARE },</span>
<span style="color: #00A000">+        { 1, "res" , SSF_RES },</span>
<span style="color: #00A000">+        { 0, "", 0 },</span>
<span style="color: #00A000">+};</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+sng_switch_type_t sng_switch_type_map[] =</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        { 1, "itu88" , LSI_SW_ITU , LSI_SW_ITU },</span>
<span style="color: #00A000">+        { 1, "itu92" , LSI_SW_ITU , LSI_SW_ITU },</span>
<span style="color: #00A000">+        { 1, "itu97" , LSI_SW_ITU97 , LSI_SW_ITU97 },</span>
<span style="color: #00A000">+        { 1, "itu00" , LSI_SW_ITU2000 , LSI_SW_ITU2000 },</span>
<span style="color: #00A000">+        { 1, "ansi88" , LSI_SW_ANS88 , LSI_SW_ANS88 },</span>
<span style="color: #00A000">+        { 1, "ansi92" , LSI_SW_ANS92 , LSI_SW_ANS92 },</span>
<span style="color: #00A000">+        { 1, "ansi95" , LSI_SW_ANS92 , LSI_SW_ANS92 },</span>
<span style="color: #00A000">+        { 1, "etsiv2" , LSI_SW_ETSI , LSI_SW_ETSI },</span>
<span style="color: #00A000">+        { 1, "etsiv3" , LSI_SW_ETSIV3 , LSI_SW_ETSIV3 },</span>
<span style="color: #00A000">+        { 1, "india" , LSI_SW_INDIA , LSI_SW_INDIA },</span>
<span style="color: #00A000">+        { 1, "uk" , LSI_SW_UK , LSI_SW_UK },</span>
<span style="color: #00A000">+        { 1, "russia" , LSI_SW_RUSSIA , LSI_SW_RUSSIA },</span>
<span style="color: #00A000">+        { 0, "", 0, 0 },</span>
<span style="color: #00A000">+};</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+sng_link_type_t sng_link_type_map[] =</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        { 1, "itu88" , LSD_SW_ITU88 , LSN_SW_ITU },</span>
<span style="color: #00A000">+        { 1, "itu92" , LSD_SW_ITU92 , LSN_SW_ITU },</span>
<span style="color: #00A000">+        { 1, "etsi" , LSD_SW_ITU92 , LSN_SW_ITU },</span>
<span style="color: #00A000">+        { 1, "ansi88" , LSD_SW_ANSI88, LSN_SW_ANS },</span>
<span style="color: #00A000">+        { 1, "ansi92" , LSD_SW_ANSI92, LSN_SW_ANS },</span>
<span style="color: #00A000">+        { 1, "ansi96" , LSD_SW_ANSI92, LSN_SW_ANS96 },</span>
<span style="color: #00A000">+        { 0, "", 0, 0 },</span>
<span style="color: #00A000">+};</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+sng_mtp2_error_type_t sng_mtp2_error_type_map[] =</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        { 1, "basic", SD_ERR_NRM },</span>
<span style="color: #00A000">+        { 1, "pcr" , SD_ERR_CYC },</span>
<span style="color: #00A000">+        { 0, "", 0 },</span>
<span style="color: #00A000">+};</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+sng_cic_cntrl_type_t sng_cic_cntrl_type_map[] =</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        { 1, "bothway" , BOTHWAY },</span>
<span style="color: #00A000">+        { 1, "incoming" , INCOMING },</span>
<span style="color: #00A000">+        { 1, "outgoing" , OUTGOING },</span>
<span style="color: #00A000">+        { 1, "controlling" , CONTROLLING },</span>
<span style="color: #00A000">+        { 1, "controlled" , CONTROLLED },</span>
<span style="color: #00A000">+        { 0, "", 0 },</span>
<span style="color: #00A000">+};</span>
<span style="color: #00A000">+</span>
typedef struct sng_timeslot
{
        int         channel;
<span style="color: #800080; font-weight: bold">@@ -47,13 +101,28 @@ typedef struct sng_timeslot</span>
        int         hole;
}sng_timeslot_t;
<span style="color: #A00000">-typedef struct sng_isupCkt</span>
<span style="color: #00A000">+typedef struct sng_span</span>
{
<span style="color: #00A000">+        char                        name[MAX_NAME_LEN];</span>
        ftdm_span_t                *span;
<span style="color: #00A000">+        uint32_t                ccSpanId;</span>
<span style="color: #00A000">+} sng_span_t;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+typedef struct sng_ccSpan</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        char                        name[MAX_NAME_LEN];</span>
<span style="color: #00A000">+        uint32_t                options;</span>
<span style="color: #00A000">+        uint32_t                id;</span>
<span style="color: #00A000">+        uint32_t                procId;</span>
<span style="color: #00A000">+        uint32_t                isupInf;</span>
        uint32_t                cicbase;
<span style="color: #A00000">-        uint32_t                typeCntrl;</span>
        char                        ch_map[MAX_CIC_MAP_LENGTH];
<span style="color: #A00000">-        uint32_t                isupInf;</span>
<span style="color: #00A000">+        uint32_t                typeCntrl;</span>
<span style="color: #00A000">+        uint32_t                switchType;</span>
<span style="color: #00A000">+        uint32_t                ssf;</span>
<span style="color: #00A000">+        uint32_t                clg_nadi;</span>
<span style="color: #00A000">+        uint32_t                cld_nadi;</span>
<span style="color: #00A000">+        uint32_t                min_digits;</span>
        uint32_t                t3;
        uint32_t                t12;
        uint32_t                t13;
<span style="color: #800080; font-weight: bold">@@ -61,8 +130,9 @@ typedef struct sng_isupCkt</span>
        uint32_t                t15;
        uint32_t                t16;
        uint32_t                t17;
<span style="color: #00A000">+        uint32_t                t35;</span>
        uint32_t                tval;
<span style="color: #A00000">-} sng_isupCkt_t;</span>
<span style="color: #00A000">+} sng_ccSpan_t;</span>
int cmbLinkSetId;
/******************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -72,9 +142,22 @@ int ftmod_ss7_parse_xml(ftdm_conf_parameter_t *ftdm_parameters, ftdm_span_t *spa</span>
static int ftmod_ss7_parse_sng_isup(ftdm_conf_node_t *sng_isup);
<span style="color: #00A000">+static int ftmod_ss7_parse_sng_gen(ftdm_conf_node_t *sng_gen);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_sng_relay(ftdm_conf_node_t *sng_relay);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_relay_channel(ftdm_conf_node_t *relay_chan);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp1_links(ftdm_conf_node_t *mtp1_links);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp1_link(ftdm_conf_node_t *mtp1_link);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp2_links(ftdm_conf_node_t *mtp2_links);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp2_link(ftdm_conf_node_t *mtp2_link);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp3_links(ftdm_conf_node_t *mtp3_links);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp3_link(ftdm_conf_node_t *mtp3_link);</span>
<span style="color: #00A000">+</span>
static int ftmod_ss7_parse_mtp_linksets(ftdm_conf_node_t *mtp_linksets);
static int ftmod_ss7_parse_mtp_linkset(ftdm_conf_node_t *mtp_linkset);
<span style="color: #A00000">-static int ftmod_ss7_parse_mtp_link(ftdm_conf_node_t *mtp_link, sng_mtp_link_t *mtpLink);</span>
static int ftmod_ss7_parse_mtp_routes(ftdm_conf_node_t *mtp_routes);
static int ftmod_ss7_parse_mtp_route(ftdm_conf_node_t *mtp_route);
<span style="color: #800080; font-weight: bold">@@ -82,19 +165,22 @@ static int ftmod_ss7_parse_mtp_route(ftdm_conf_node_t *mtp_route);</span>
static int ftmod_ss7_parse_isup_interfaces(ftdm_conf_node_t *isup_interfaces);
static int ftmod_ss7_parse_isup_interface(ftdm_conf_node_t *isup_interface);
<span style="color: #A00000">-static int ftmod_ss7_fill_in_mtpLink(sng_mtp_link_t *mtpLink);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_cc_spans(ftdm_conf_node_t *cc_spans);</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_cc_span(ftdm_conf_node_t *cc_span);</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_relay_channel(sng_relay_t *relay_channel);</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp1_link(sng_mtp1_link_t *mtp1Link);</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp2_link(sng_mtp2_link_t *mtp1Link);</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp3_link(sng_mtp3_link_t *mtp1Link);</span>
static int ftmod_ss7_fill_in_mtpLinkSet(sng_link_set_t *mtpLinkSet);
<span style="color: #A00000">-</span>
static int ftmod_ss7_fill_in_mtp3_route(sng_route_t *mtp3_route);
static int ftmod_ss7_fill_in_nsap(sng_route_t *mtp3_route);
<span style="color: #A00000">-</span>
static int ftmod_ss7_fill_in_isup_interface(sng_isup_inf_t *sng_isup);
static int ftmod_ss7_fill_in_isap(sng_isap_t *sng_isap);
<span style="color: #A00000">-</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_ccSpan(sng_ccSpan_t *ccSpan);</span>
static int ftmod_ss7_fill_in_self_route(int spc, int linkType, int switchType, int ssf);
<span style="color: #00A000">+static int ftmod_ss7_fill_in_circuits(sng_span_t *sngSpan);</span>
<span style="color: #A00000">-static int ftmod_ss7_fill_in_circuits(sng_isupCkt_t *isupCkt);</span>
static int ftmod_ss7_next_timeslot(char *ch_map, sng_timeslot_t *timeslot);
/******************************************************************************/
<span style="color: #800080; font-weight: bold">@@ -103,18 +189,17 @@ static int ftmod_ss7_next_timeslot(char *ch_map, sng_timeslot_t *timeslot);</span>
int ftmod_ss7_parse_xml(ftdm_conf_parameter_t *ftdm_parameters, ftdm_span_t *span)
{
        int                                        i = 0;
<span style="color: #A00000">-        int                                        x = 0;</span>
        const char                        *var = NULL;
        const char                        *val = NULL;
        ftdm_conf_node_t        *ptr = NULL;
        sng_route_t                        self_route;
<span style="color: #A00000">-        sng_isupCkt_t                isupCkt;</span>
<span style="color: #00A000">+        sng_span_t                        sngSpan;</span>
        /* clean out the isup ckt */
<span style="color: #A00000">-        memset(&isupCkt, 0x0, sizeof(sng_isupCkt_t));</span>
<span style="color: #00A000">+        memset(&sngSpan, 0x0, sizeof(sngSpan));</span>
        /* clean out the self route */
<span style="color: #A00000">-        memset(&self_route, 0x0, sizeof(sng_route_t));</span>
<span style="color: #00A000">+        memset(&self_route, 0x0, sizeof(self_route));</span>
        var = ftdm_parameters[i].var;
        val = ftdm_parameters[i].val;
<span style="color: #800080; font-weight: bold">@@ -136,92 +221,23 @@ int ftmod_ss7_parse_xml(ftdm_conf_parameter_t *ftdm_parameters, ftdm_span_t *spa</span>
        i++;
        while (ftdm_parameters[i].var != NULL) {
<span style="color: #00A000">+        /**************************************************************************/</span>
                var = ftdm_parameters[i].var;
                val = ftdm_parameters[i].val;
<span style="color: #A00000">-                if (!strcasecmp(var, "ch_map")) {</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                        strncpy(isupCkt.ch_map, val, MAX_CIC_MAP_LENGTH-1);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound channel map \"%s\"\n", isupCkt.ch_map);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "typeCntrl")) {</span>
<span style="color: #A00000">-                        if (!strcasecmp(val, "bothway")) {</span>
<span style="color: #A00000">-                                isupCkt.typeCntrl = BOTHWAY;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound control type \"bothway\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(val, "incoming")) {</span>
<span style="color: #A00000">-                                isupCkt.typeCntrl = INCOMING;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound control type \"incoming\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(val, "outgoing")) {</span>
<span style="color: #A00000">-                                isupCkt.typeCntrl = OUTGOING;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound control type \"outgoing\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(val, "controlled")) {</span>
<span style="color: #A00000">-                                isupCkt.typeCntrl = CONTROLLED;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound control type \"controlled\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(val, "controlling")) {</span>
<span style="color: #A00000">-                                isupCkt.typeCntrl = CONTROLLING;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound control type \"controlling\"\n");</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("Found invalid circuit control type \"%s\"!", val);</span>
<span style="color: #A00000">-                                goto ftmod_ss7_parse_xml_error;</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "cicbase")) {</span>
<span style="color: #A00000">-                        isupCkt.cicbase = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound cicbase = %d\n", isupCkt.cicbase);</span>
<span style="color: #00A000">+                if (!strcasecmp(var, "dialplan")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(var, "dialplan")) {</span>
                        /* do i give a shit about this??? */
                /**********************************************************************/
                } else if (!strcasecmp(var, "context")) {
<span style="color: #A00000">-                        /* do i give a shit about this??? */</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup_interface")) {</span>
<span style="color: #A00000">-                        /* go through all the existing interfaces and see if we find a match */</span>
<span style="color: #A00000">-                        x = 1;</span>
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.isupIntf[x].id != 0) {</span>
<span style="color: #A00000">-                                if (!strcasecmp(g_ftdm_sngss7_data.cfg.isupIntf[x].name, val)) {</span>
<span style="color: #A00000">-                                        /* we have a match so break out of this loop */</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                /* move on to the next one */</span>
<span style="color: #A00000">-                                x++;</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        isupCkt.isupInf = x;</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup_interface = %s\n",g_ftdm_sngss7_data.cfg.isupIntf[x].name);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t3")) {</span>
<span style="color: #A00000">-                        isupCkt.t3 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t3 = \"%d\"\n", isupCkt.t3);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t12")) {</span>
<span style="color: #A00000">-                        isupCkt.t12 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t12 = \"%d\"\n", isupCkt.t12);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t13")) {</span>
<span style="color: #A00000">-                        isupCkt.t13 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t13 = \"%d\"\n", isupCkt.t13);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t14")) {</span>
<span style="color: #A00000">-                        isupCkt.t14 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t14 = \"%d\"\n", isupCkt.t14);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t15")) {</span>
<span style="color: #A00000">-                        isupCkt.t15 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t15 = \"%d\"\n", isupCkt.t15);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t16")) {</span>
<span style="color: #A00000">-                        isupCkt.t16 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t16 = \"%d\"\n", isupCkt.t16);</span>
<span style="color: #00A000">+                        /* do i give a shit about this??? */</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.t17")) {</span>
<span style="color: #A00000">-                        isupCkt.t17 = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t17 = \"%d\"\n", isupCkt.t17);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(var, "ccSpanId")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(var, "isup.tval")) {</span>
<span style="color: #A00000">-                        isupCkt.tval = atoi(val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tval = \"%d\"\n", isupCkt.tval);</span>
<span style="color: #00A000">+                        sngSpan.ccSpanId = atoi(val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an ccSpanId = %d\n",sngSpan.ccSpanId);</span>
                /**********************************************************************/
                } else {
                        SS7_ERROR("Unknown parameter found =\"%s\"...ignoring it!\n", var);
<span style="color: #800080; font-weight: bold">@@ -231,24 +247,11 @@ int ftmod_ss7_parse_xml(ftdm_conf_parameter_t *ftdm_parameters, ftdm_span_t *spa</span>
                i++;
        } /* while (ftdm_parameters[i].var != NULL) */
<span style="color: #A00000">-        /* setup the self mtp3 route */</span>
<span style="color: #A00000">-        i = g_ftdm_sngss7_data.cfg.isupIntf[x].mtpRouteId;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        if(ftmod_ss7_fill_in_self_route(g_ftdm_sngss7_data.cfg.isupIntf[x].spc,</span>
<span style="color: #A00000">-                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].linkType,</span>
<span style="color: #A00000">-                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].switchType,</span>
<span style="color: #A00000">-                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].ssf)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                SS7_ERROR("Failed to fill in self route structure!\n");</span>
<span style="color: #A00000">-                goto ftmod_ss7_parse_xml_error;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-</span>
        /* fill the pointer to span into isupCkt */
<span style="color: #A00000">-        isupCkt.span = span;</span>
<span style="color: #00A000">+        sngSpan.span = span;</span>
        /* setup the circuits structure */
<span style="color: #A00000">-        if(ftmod_ss7_fill_in_circuits(&isupCkt)) {</span>
<span style="color: #00A000">+        if(ftmod_ss7_fill_in_circuits(&sngSpan)) {</span>
                SS7_ERROR("Failed to fill in circuits structure!\n");
                goto ftmod_ss7_parse_xml_error;
        }
<span style="color: #800080; font-weight: bold">@@ -262,9 +265,15 @@ ftmod_ss7_parse_xml_error:</span>
/******************************************************************************/
static int ftmod_ss7_parse_sng_isup(ftdm_conf_node_t *sng_isup)
{
<span style="color: #00A000">+        ftdm_conf_node_t        *gen_config = NULL;</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *relay_channels = NULL;</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp1_links = NULL;</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp2_links = NULL;</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp3_links = NULL;</span>
        ftdm_conf_node_t        *mtp_linksets = NULL;
        ftdm_conf_node_t        *mtp_routes = NULL;
        ftdm_conf_node_t        *isup_interfaces = NULL;
<span style="color: #00A000">+        ftdm_conf_node_t        *cc_spans = NULL;</span>
        ftdm_conf_node_t        *tmp_node = NULL;
        /* confirm that we are looking at sng_isup */
<span style="color: #800080; font-weight: bold">@@ -275,51 +284,145 @@ static int ftmod_ss7_parse_sng_isup(ftdm_conf_node_t *sng_isup)</span>
                SS7_DEBUG("Parsing \"sng_isup\"...\n");
        }
<span style="color: #A00000">-        /* extract the 3 main sections of the sng_isup block */</span>
<span style="color: #00A000">+        /* extract the main sections of the sng_isup block */</span>
        tmp_node = sng_isup->child;
<span style="color: #A00000">-        while (tmp_node != NULL) {</span>
<span style="color: #A00000">-                if (!strcasecmp(tmp_node->name, "mtp_linksets")) {</span>
<span style="color: #00A000">+        while (tmp_node != NULL) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+                /* check the type of structure */</span>
<span style="color: #00A000">+                 if (!strcasecmp(tmp_node->name, "sng_gen")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (gen_config == NULL) {</span>
<span style="color: #00A000">+                                gen_config = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"sng_gen\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"sng_gen\" section\n!");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(tmp_node->name, "sng_relay")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (relay_channels == NULL) {</span>
<span style="color: #00A000">+                                relay_channels = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"sng_relay\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"sng_relay\" section\n!");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }else if (!strcasecmp(tmp_node->name, "mtp1_links")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (mtp1_links == NULL) {</span>
<span style="color: #00A000">+                                mtp1_links = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"mtp1_links\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"mtp1_links\" section!\n");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(tmp_node->name, "mtp2_links")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (mtp2_links == NULL) {</span>
<span style="color: #00A000">+                                mtp2_links = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"mtp2_links\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"mtp2_links\" section!\n");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(tmp_node->name, "mtp3_links")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (mtp3_links == NULL) {</span>
<span style="color: #00A000">+                                mtp3_links = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"mtp3_links\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"mtp3_links\" section!\n");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(tmp_node->name, "mtp_linksets")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                        if (mtp_linksets == NULL) {
                                mtp_linksets = tmp_node;
<span style="color: #A00000">-                                SS7_DEBUG("\tFound a \"mtp_linksets section!\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"mtp_linksets\" section!\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_ERROR("\tFound a second \"mtp_linksets\" section!\n");</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"mtp_linksets\" section!\n");</span>
                                return FTDM_FAIL;
                        }
<span style="color: #00A000">+                /**********************************************************************/</span>
                } else if (!strcasecmp(tmp_node->name, "mtp_routes")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        if (mtp_routes == NULL) {
                                mtp_routes = tmp_node;
<span style="color: #A00000">-                                SS7_DEBUG("\tFound a \"mtp_routes\" section!\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"mtp_routes\" section!\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_ERROR("\tFound a second \"mtp_routes\" section!\n");</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"mtp_routes\" section!\n");</span>
                                return FTDM_FAIL;
                        }
<span style="color: #00A000">+                /**********************************************************************/</span>
                } else if (!strcasecmp(tmp_node->name, "isup_interfaces")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        if (isup_interfaces == NULL) {
                                isup_interfaces = tmp_node;
<span style="color: #A00000">-                                SS7_DEBUG("\tFound a \"isup_interfaces\" section!\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"isup_interfaces\" section!\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"isup_interfaces\" section\n!");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(tmp_node->name, "cc_spans")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (cc_spans == NULL) {</span>
<span style="color: #00A000">+                                cc_spans = tmp_node;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a \"cc_spans\" section!\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_ERROR("\tFound a second \"isup_interfaces\" section\n!");</span>
<span style="color: #00A000">+                                SS7_ERROR("Found a second \"cc_spans\" section\n!");</span>
                                return FTDM_FAIL;
                        }
<span style="color: #00A000">+                /**********************************************************************/</span>
                } else {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        SS7_ERROR("\tFound an unknown section \"%s\"!\n", tmp_node->name);
                        return FTDM_FAIL;
<span style="color: #A00000">-                }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } </span>
                /* go to the next sibling */
                tmp_node = tmp_node->next;
<span style="color: #A00000">-</span>
        } /* while (tmp_node != NULL) */
        /* now try to parse the sections */
<span style="color: #00A000">+        if (ftmod_ss7_parse_sng_gen(gen_config)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"gen_config\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (ftmod_ss7_parse_sng_relay(relay_channels)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"relay_channels\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (ftmod_ss7_parse_mtp1_links(mtp1_links)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"mtp1_links\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (ftmod_ss7_parse_mtp2_links(mtp2_links)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"mtp2_links\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (ftmod_ss7_parse_mtp3_links(mtp3_links)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"mtp3_links\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        if (ftmod_ss7_parse_mtp_linksets(mtp_linksets)) {
                SS7_ERROR("Failed to parse \"mtp_linksets\"!\n");
                return FTDM_FAIL;
        }
<span style="color: #A00000">-        if (ftmod_ss7_parse_mtp_routes(mtp_routes)) {</span>
<span style="color: #00A000">+        if (ftmod_ss7_parse_mtp_routes(mtp_routes)) {        </span>
                SS7_ERROR("Failed to parse \"mtp_routes\"!\n");
                return FTDM_FAIL;
        }
<span style="color: #800080; font-weight: bold">@@ -329,35 +432,190 @@ static int ftmod_ss7_parse_sng_isup(ftdm_conf_node_t *sng_isup)</span>
                return FTDM_FAIL;
        }
<span style="color: #00A000">+        if (ftmod_ss7_parse_cc_spans(cc_spans)) {</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to parse \"cc_spans\"!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        return FTDM_SUCCESS;
}
/******************************************************************************/
<span style="color: #A00000">-static int ftmod_ss7_parse_mtp_linksets(ftdm_conf_node_t *mtp_linksets)</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_sng_gen(ftdm_conf_node_t *sng_gen)</span>
{
<span style="color: #A00000">-        ftdm_conf_node_t        *mtp_linkset = NULL;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = sng_gen->parameters;</span>
<span style="color: #00A000">+        int                                                num_parms = sng_gen->n_parameters;</span>
<span style="color: #00A000">+        int                                                i = 0;</span>
<span style="color: #A00000">-        /* confirm that we are looking at mtp_linksets */</span>
<span style="color: #A00000">-        if (strcasecmp(mtp_linksets->name, "mtp_linksets")) {</span>
<span style="color: #A00000">-                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp_linksets\"!\n",mtp_linksets->name);</span>
<span style="color: #00A000">+        /* extract all the information from the parameters */</span>
<span style="color: #00A000">+        for (i = 0; i < num_parms; i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(parm->var, "procId")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.procId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a procId = %d\n", g_ftdm_sngss7_data.cfg.procId);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "license")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy(g_ftdm_sngss7_data.cfg.license, parm->val);</span>
<span style="color: #00A000">+                        strcpy(g_ftdm_sngss7_data.cfg.signature, parm->val);</span>
<span style="color: #00A000">+                        strcat(g_ftdm_sngss7_data.cfg.signature, ".sig");</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found license file = %s\n", g_ftdm_sngss7_data.cfg.license);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found signature file = %s\n", g_ftdm_sngss7_data.cfg.signature);        </span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "spc")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.spc = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found SPC = %d\n", g_ftdm_sngss7_data.cfg.spc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move to the next parmeter */</span>
<span style="color: #00A000">+                parm = parm + 1;</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_sng_relay(ftdm_conf_node_t *sng_relay)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *relay_chan = NULL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at sng_relay */</span>
<span style="color: #00A000">+        if (strcasecmp(sng_relay->name, "sng_relay")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"sng_relay\"!\n",sng_relay->name);</span>
                return FTDM_FAIL;
        } else {
<span style="color: #A00000">-                SS7_DEBUG("Parsing \"mtp_linksets\"...\n");</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"sng_relay\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        relay_chan = sng_relay->child;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (relay_chan != NULL) {</span>
<span style="color: #00A000">+                while (relay_chan != NULL) {</span>
<span style="color: #00A000">+                        /* try to the parse relay_channel */</span>
<span style="color: #00A000">+                        if (ftmod_ss7_parse_relay_channel(relay_chan)) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Failed to parse \"relay_channels\"!\n");</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* move on to the next linkset */</span>
<span style="color: #00A000">+                        relay_chan = relay_chan->next;</span>
<span style="color: #00A000">+                } /* while (relay_chan != NULL) */</span>
<span style="color: #00A000">+        } /* if (relay_chan != NULL) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_relay_channel(ftdm_conf_node_t *relay_chan)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_relay_t                                tmp_chan;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = relay_chan->parameters;</span>
<span style="color: #00A000">+        int                                                num_parms = relay_chan->n_parameters;</span>
<span style="color: #00A000">+        int                                                i = 0;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at relay_channel */</span>
<span style="color: #00A000">+        if (strcasecmp(relay_chan->name, "relay_channel")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"relay_channel\"!\n",relay_chan->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"relay_channel\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the tmp_chan structure */</span>
<span style="color: #00A000">+        memset(&tmp_chan, 0x0, sizeof(tmp_chan));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* extract all the information from the parameters */</span>
<span style="color: #00A000">+        for (i = 0; i < num_parms; i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(parm->var, "name")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)tmp_chan.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an relay_channel named = %s\n", tmp_chan.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "type")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        if (!strcasecmp(parm->val, "listen")) {</span>
<span style="color: #00A000">+                                tmp_chan.type = LRY_CT_TCP_LISTEN;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a type = LISTEN\n");</span>
<span style="color: #00A000">+                        } else if (!strcasecmp(parm->val, "server")) {</span>
<span style="color: #00A000">+                                tmp_chan.type = LRY_CT_TCP_SERVER;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a type = SERVER\n");</span>
<span style="color: #00A000">+                        } else if (!strcasecmp(parm->val, "client")) {</span>
<span style="color: #00A000">+                                tmp_chan.type = LRY_CT_TCP_CLIENT;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found a type = CLIENT\n");</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid \"type\" = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "hostname")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)tmp_chan.hostname, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a hostname = %s\n", tmp_chan.hostname);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "port")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        tmp_chan.port = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a port = %d\n", tmp_chan.port);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "procId")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        tmp_chan.procId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a procId = %d\n", tmp_chan.procId);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move to the next parmeter */</span>
<span style="color: #00A000">+                parm = parm + 1;</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* store the channel in the global structure */</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_relay_channel(&tmp_chan);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp1_links(ftdm_conf_node_t *mtp1_links)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp1_link = NULL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at mtp1_links */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp1_links->name, "mtp1_links")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp1_links\"!\n",mtp1_links->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp1_links\"...\n");</span>
        }
        /* extract the mtp_links */
<span style="color: #A00000">-        mtp_linkset = mtp_linksets->child;</span>
<span style="color: #00A000">+        mtp1_link = mtp1_links->child;</span>
<span style="color: #A00000">-        /* run through all of the mtp_linksets found */</span>
<span style="color: #A00000">-        while (mtp_linkset != NULL) {</span>
<span style="color: #A00000">-                /* try to the parse mtp_linkset */</span>
<span style="color: #A00000">-                if (ftmod_ss7_parse_mtp_linkset(mtp_linkset)) {</span>
<span style="color: #A00000">-                        SS7_ERROR("Failed to parse \"mtp_linkset\"!\n");</span>
<span style="color: #00A000">+        /* run through all of the links found */</span>
<span style="color: #00A000">+        while (mtp1_link != NULL) {</span>
<span style="color: #00A000">+                /* try to the parse mtp_link */</span>
<span style="color: #00A000">+                if (ftmod_ss7_parse_mtp1_link(mtp1_link)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to parse \"mtp1_link\"!\n");</span>
                        return FTDM_FAIL;
                }
<span style="color: #A00000">-                /* move on to the next linkset */</span>
<span style="color: #A00000">-                mtp_linkset = mtp_linkset->next;</span>
<span style="color: #00A000">+                /* move on to the next link */</span>
<span style="color: #00A000">+                mtp1_link = mtp1_link->next;</span>
        } /* while (mtp_linkset != NULL) */
<span style="color: #800080; font-weight: bold">@@ -365,413 +623,611 @@ static int ftmod_ss7_parse_mtp_linksets(ftdm_conf_node_t *mtp_linksets)</span>
}
/******************************************************************************/
<span style="color: #A00000">-static int ftmod_ss7_parse_mtp_linkset(ftdm_conf_node_t *mtp_linkset)</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp1_link(ftdm_conf_node_t *mtp1_link)</span>
{
<span style="color: #A00000">-        ftdm_conf_parameter_t        *parm = mtp_linkset->parameters;</span>
<span style="color: #A00000">-        int                                                num_parms = mtp_linkset->n_parameters;</span>
<span style="color: #A00000">-        ftdm_conf_node_t                *mtp_link = NULL;</span>
<span style="color: #A00000">-        sng_mtp_link_t                        mtpLink[MAX_MTP_LINKS+1];</span>
<span style="color: #A00000">-        sng_link_set_t                        mtpLinkSet;</span>
<span style="color: #A00000">-        int                                                count;</span>
<span style="color: #A00000">-        int                                                i;</span>
<span style="color: #00A000">+        sng_mtp1_link_t                         mtp1Link;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = mtp1_link->parameters;</span>
<span style="color: #00A000">+        int                                                 num_parms = mtp1_link->n_parameters;</span>
<span style="color: #00A000">+        int                                                 i;</span>
<span style="color: #A00000">-        /* initialize the mtp_link structures */</span>
<span style="color: #A00000">-        for (i = 0; i < (MAX_MTP_LINKS + 1); i++) {</span>
<span style="color: #A00000">-                memset(&mtpLink[i], 0x0, sizeof(mtpLink[i]));</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-        memset(&mtpLinkSet, 0x0, sizeof(mtpLinkSet));</span>
<span style="color: #00A000">+        /* initalize the mtp1Link structure */</span>
<span style="color: #00A000">+        memset(&mtp1Link, 0x0, sizeof(mtp1Link));</span>
<span style="color: #A00000">-        /* confirm that we are looking at mtp_linkset */</span>
<span style="color: #A00000">-        if (strcasecmp(mtp_linkset->name, "mtp_linkset")) {</span>
<span style="color: #A00000">-                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp_linkset\"!\n",mtp_linkset->name);</span>
<span style="color: #00A000">+        /* confirm that we are looking at an mtp_link */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp1_link->name, "mtp1_link")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp1_link\"!\n",mtp1_link->name);</span>
                return FTDM_FAIL;
        } else {
<span style="color: #A00000">-                SS7_DEBUG("Parsing \"mtp_linkset\"...\n");</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp1_link\"...\n");</span>
        }
<span style="color: #A00000">-        /* extract all the information from the parameters */</span>
        for (i = 0; i < num_parms; i++) {
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
                if (!strcasecmp(parm->var, "name")) {
<span style="color: #A00000">-                        strncpy((char *)mtpLinkSet.name, parm->val, MAX_NAME_LEN-1);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound an \"mtp_linkset\" named = %s\n", mtpLinkSet.name);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "apc")) {</span>
<span style="color: #A00000">-                        mtpLinkSet.apc = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLinkSet->apc = %d\n", mtpLinkSet.apc);</span>
<span style="color: #00A000">+                        strcpy((char *)mtp1Link.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp1_link named = %s\n", mtp1Link.name);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "minActive")) {</span>
<span style="color: #A00000">-                        mtpLinkSet.minActive = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLinkSet->minActive = %d\n", mtpLinkSet.minActive);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp1Link.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp1_link id = %d\n", mtp1Link.id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "span")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp1Link.span = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp1_link span = %d\n", mtp1Link.span);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "chan")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp1Link.chan = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp1_link chan = %d\n", mtp1Link.chan);</span>
                /**********************************************************************/
                } else {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        SS7_ERROR("\tFound an invalid parameter \"%s\"!\n", parm->val);
                        return FTDM_FAIL;
<span style="color: #00A000">+                /**********************************************************************/</span>
                }
                /* move to the next parmeter */
                parm = parm + 1;
<span style="color: #00A000">+        /**************************************************************************/</span>
        } /* for (i = 0; i < num_parms; i++) */
<span style="color: #A00000">-        /* grab the first mtp-link (which sits below the mtp_links section) */</span>
<span style="color: #A00000">-        mtp_link = mtp_linkset->child->child;</span>
<span style="color: #00A000">+        /* store the link in global structure */</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_mtp1_link(&mtp1Link);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp2_links(ftdm_conf_node_t *mtp2_links)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp2_link = NULL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at mtp2_links */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp2_links->name, "mtp2_links")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp2_links\"!\n",mtp2_links->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp2_links\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #A00000">-        /* initalize the link counter */</span>
<span style="color: #A00000">-        count = 0;</span>
<span style="color: #00A000">+        /* extract the mtp_links */</span>
<span style="color: #00A000">+        mtp2_link = mtp2_links->child;</span>
<span style="color: #A00000">-        /* run through all of the mtp_links found */</span>
<span style="color: #A00000">-        while (mtp_link != NULL) {</span>
<span style="color: #00A000">+        /* run through all of the links found */</span>
<span style="color: #00A000">+        while (mtp2_link != NULL) {</span>
                /* try to the parse mtp_linkset */
<span style="color: #A00000">-                if (ftmod_ss7_parse_mtp_link(mtp_link, &mtpLink[count] )) {</span>
<span style="color: #A00000">-                        SS7_ERROR("Failed to parse \"mtp_link\"!\n");</span>
<span style="color: #00A000">+                if (ftmod_ss7_parse_mtp2_link(mtp2_link)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to parse \"mtp2_link\"!\n");</span>
                        return FTDM_FAIL;
                }
<span style="color: #A00000">-                /* incremenet the link counter */</span>
<span style="color: #A00000">-                count++;</span>
<span style="color: #A00000">-</span>
                /* move on to the next link */
<span style="color: #A00000">-                mtp_link = mtp_link->next;</span>
<span style="color: #00A000">+                mtp2_link = mtp2_link->next;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        } /* while (mtp_linkset != NULL) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #A00000">-        } /* while (mtp_link != NULL) */</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp2_link(ftdm_conf_node_t *mtp2_link)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_mtp2_link_t                         mtp2Link;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = mtp2_link->parameters;</span>
<span style="color: #00A000">+        int                                                 num_parms = mtp2_link->n_parameters;</span>
<span style="color: #00A000">+        int                                                 i;</span>
<span style="color: #00A000">+        int                                                ret;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the mtp1Link structure */</span>
<span style="color: #00A000">+        memset(&mtp2Link, 0x0, sizeof(mtp2Link));</span>
<span style="color: #A00000">-        /* confirm we have the right number of links */</span>
<span style="color: #A00000">-        if (count < 1 || count > 15 ) {</span>
<span style="color: #A00000">-                SS7_ERROR("Invalid number of mtp_links found (%d)\n", count);</span>
<span style="color: #00A000">+        /* confirm that we are looking at an mtp2_link */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp2_link->name, "mtp2_link")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp2_link\"!\n",mtp2_link->name);</span>
                return FTDM_FAIL;
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp2_link\"...\n");</span>
        }
<span style="color: #A00000">-        /* now we need to see if this linkset exists already or not and grab an Id */</span>
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpLinkSet[i].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp((const char *)g_ftdm_sngss7_data.cfg.mtpLinkSet[i].name, (const char *)mtpLinkSet.name)) {</span>
<span style="color: #A00000">-                        /* we've found the linkset...so it has already been configured */</span>
<span style="color: #A00000">-                        break;</span>
<span style="color: #00A000">+        for (i = 0; i < num_parms; i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(parm->var, "name")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)mtp2Link.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2_link named = %s\n", mtp2Link.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2_link id = %d\n", mtp2Link.id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "mtp1Id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.mtp1Id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2_link mtp1Id = %d\n", mtp2Link.mtp1Id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "errorType")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_mtp2_error_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid mtp2_link errorType = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                mtp2Link.errorType = sng_mtp2_error_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtp2_link errorType = %s\n", sng_mtp2_error_type_map[ret].sng_type);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "lssuLength")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.lssuLength = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2_link lssuLength = %d\n", mtp2Link.lssuLength);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "linkType")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_link_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid mtp2_link linkType = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                mtp2Link.linkType = sng_link_type_map[ret].tril_mtp2_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtp2_link linkType = %s\n", sng_link_type_map[ret].sng_type);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t1")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t1 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t1 = \"%d\"\n",mtp2Link.t1);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t2")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t2 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t2 = \"%d\"\n",mtp2Link.t2);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t3")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t3 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t3 = \"%d\"\n",mtp2Link.t3);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t4n")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t4n = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t4n = \"%d\"\n",mtp2Link.t4n);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t4e")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t4e = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t4e = \"%d\"\n",mtp2Link.t4e);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t5")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t5 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t5 = \"%d\"\n",mtp2Link.t5);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t6")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t6 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t6 = \"%d\"\n",mtp2Link.t6);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t7")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp2Link.t7 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp2 t7 = \"%d\"\n",mtp2Link.t7);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                }
<span style="color: #A00000">-                i++;</span>
<span style="color: #A00000">-                /* add in error check to make sure we don't go out-of-bounds */</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-        /* if the id value is 0 that means we didn't find the linkset */</span>
<span style="color: #A00000">-        if (g_ftdm_sngss7_data.cfg.mtpLinkSet[i].id == 0) {</span>
<span style="color: #A00000">-                mtpLinkSet.id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found new mtpLinkSet, id is = %d\n", mtpLinkSet.id);</span>
<span style="color: #A00000">-        } else {</span>
<span style="color: #A00000">-                mtpLinkSet.id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found existing mtpLinkSet, id is = %d\n", mtpLinkSet.id);</span>
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+                /* move to the next parmeter */</span>
<span style="color: #00A000">+                parm = parm + 1;</span>
<span style="color: #A00000">-        /* we now have all the information to fill in the Libsng_ss7 structures */</span>
<span style="color: #A00000">-        i = 0;</span>
<span style="color: #A00000">-        count = 0;</span>
<span style="color: #A00000">-        while (mtpLink[i].mtp1.span != 0 ){</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #A00000">-                /* have to grab a couple of values from the linkset */</span>
<span style="color: #A00000">-                mtpLink[i].mtp3.apc                        = mtpLinkSet.apc;</span>
<span style="color: #A00000">-                mtpLink[i].mtp3.linkSetId        = mtpLinkSet.id;</span>
<span style="color: #00A000">+        /* store the link in global structure */</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_mtp2_link(&mtp2Link);</span>
<span style="color: #A00000">-                ftmod_ss7_fill_in_mtpLink(&mtpLink[i]);</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #A00000">-                /* increment the links counter */</span>
<span style="color: #A00000">-                count++;</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp3_links(ftdm_conf_node_t *mtp3_links)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp3_link = NULL;</span>
<span style="color: #A00000">-                /* increment the index value */</span>
<span style="color: #A00000">-                i++;</span>
<span style="color: #00A000">+        /* confirm that we are looking at mtp3_links */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp3_links->name, "mtp3_links")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp3_links\"!\n",mtp3_links->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp3_links\"...\n");</span>
        }
<span style="color: #A00000">-        mtpLinkSet.linkType                = mtpLink[0].mtp3.linkType;</span>
<span style="color: #A00000">-        mtpLinkSet.switchType        = mtpLink[0].mtp3.switchType;</span>
<span style="color: #A00000">-        mtpLinkSet.ssf                        = mtpLink[0].mtp3.ssf;</span>
<span style="color: #00A000">+        /* extract the mtp_links */</span>
<span style="color: #00A000">+        mtp3_link = mtp3_links->child;</span>
<span style="color: #A00000">-        ftmod_ss7_fill_in_mtpLinkSet(&mtpLinkSet);</span>
<span style="color: #00A000">+        /* run through all of the links found */</span>
<span style="color: #00A000">+        while (mtp3_link != NULL) {</span>
<span style="color: #00A000">+                /* try to the parse mtp_linkset */</span>
<span style="color: #00A000">+                if (ftmod_ss7_parse_mtp3_link(mtp3_link)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to parse \"mtp3_link\"!\n");</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move on to the next link */</span>
<span style="color: #00A000">+                mtp3_link = mtp3_link->next;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        } /* while (mtp_linkset != NULL) */</span>
        return FTDM_SUCCESS;
}
/******************************************************************************/
<span style="color: #A00000">-static int ftmod_ss7_parse_mtp_link(ftdm_conf_node_t *mtp_link, sng_mtp_link_t *mtpLink)</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp3_link(ftdm_conf_node_t *mtp3_link)</span>
{
<span style="color: #A00000">-        ftdm_conf_parameter_t        *parm = mtp_link->parameters;</span>
<span style="color: #A00000">-        int                                                 num_parms = mtp_link->n_parameters;</span>
<span style="color: #00A000">+        sng_mtp3_link_t                         mtp3Link;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = mtp3_link->parameters;</span>
<span style="color: #00A000">+        int                                                 num_parms = mtp3_link->n_parameters;</span>
        int                                                 i;
<span style="color: #A00000">-        </span>
<span style="color: #00A000">+        int                                                ret;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the mtp3Link structure */</span>
<span style="color: #00A000">+        memset(&mtp3Link, 0x0, sizeof(mtp3Link));</span>
<span style="color: #00A000">+</span>
        /* confirm that we are looking at an mtp_link */
<span style="color: #A00000">-        if (strcasecmp(mtp_link->name, "mtp_link")) {</span>
<span style="color: #A00000">-                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp_link\"!\n",mtp_link->name);</span>
<span style="color: #00A000">+        if (strcasecmp(mtp3_link->name, "mtp3_link")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp3_link\"!\n",mtp3_link->name);</span>
                return FTDM_FAIL;
        } else {
<span style="color: #A00000">-                SS7_DEBUG("Parsing \"mtp_link\"...\n");</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp3_link\"...\n");</span>
        }
<span style="color: #A00000">-        </span>
<span style="color: #00A000">+</span>
        for (i = 0; i < num_parms; i++) {
<span style="color: #A00000">-                /* try to match the parameter to what we expect */</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
                if (!strcasecmp(parm->var, "name")) {
<span style="color: #A00000">-                        strncpy((char *)mtpLink->name, parm->val, MAX_NAME_LEN-1);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound an \"mtp_link\" named = %s\n", mtpLink->name);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "span")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp1.span = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLink->span = %d\n", mtpLink->mtp1.span);</span>
<span style="color: #00A000">+                        strcpy((char *)mtp3Link.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3_link named = %s\n", mtp3Link.name);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "chan")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp1.chan = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLink->chan = %d\n", mtpLink->mtp1.chan);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "errorType")) {</span>
<span style="color: #A00000">-                        if (!strcasecmp(parm->val, "basic")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.errorType = SD_ERR_NRM;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "pcr")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.errorType = SD_ERR_CYC;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid \"errorType\" = %s\n", parm->var);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLink->errorType=%s\n", parm->val);</span>
<span style="color: #00A000">+                        mtp3Link.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3_link id = %d\n", mtp3Link.id);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "lssuLength")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.lssuLength = atoi(parm->val);</span>
<span style="color: #A00000">-                        if ((mtpLink->mtp2.lssuLength != 1) && (mtpLink->mtp2.lssuLength != 2)) {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid \"lssuLength\" = %d\n", mtpLink->mtp2.lssuLength);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->lssuLength=%d\n", mtpLink->mtp2.lssuLength);</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "mtp2Id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.mtp2Id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3_link mtp2Id = %d\n", mtp3Link.mtp2Id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "mtp2ProcId")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.mtp2ProcId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3_link mtp2ProcId = %d\n", mtp3Link.mtp2ProcId);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "priority")) {
<span style="color: #A00000">-                        mtpLink->mtp3.priority = atoi(parm->val);</span>
<span style="color: #A00000">-                        if ((mtpLink->mtp3.priority == 0) || (mtpLink->mtp3.priority == 1) || </span>
<span style="color: #A00000">-                                (mtpLink->mtp3.priority == 2) || (mtpLink->mtp3.priority == 3)) {</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->priority = %d\n",mtpLink->mtp3.priority);</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid \"priority\"=%d\n",mtpLink->mtp3.priority);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        } </span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.priority = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 Link priority = %d\n",mtp3Link.priority); </span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "linkType")) {
<span style="color: #A00000">-                        if (!strcasecmp(parm->val, "itu92")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ITU92;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ITU;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ITU92\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "itu88")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ITU88;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ITU;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ITU88\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi96")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ANSI92;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ANS96;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ANSI96\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi92")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ANSI92;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ANS;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ANSI92\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi88")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ANSI88;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ANS;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ANSI88\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "etsi")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp2.linkType = LSD_SW_ITU92;</span>
<span style="color: #A00000">-                                mtpLink->mtp3.linkType = LSN_SW_ITU;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->linkType = \"ETSI\"\n");</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid linktype of \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_link_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid mtp3_link linkType = %s\n", parm->var);</span>
                                return FTDM_FAIL;
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                mtp3Link.linkType = sng_link_type_map[ret].tril_mtp3_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtp3_link linkType = %s\n", sng_link_type_map[ret].sng_type);</span>
                        }
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "switchType")) {
<span style="color: #A00000">-                        if (!strcasecmp(parm->val, "itu97")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ITU97;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ITU97\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "itu88")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ITU;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ITU88\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "itu92")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ITU;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ITU92\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "itu00")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ITU2000;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ITU00\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ETSIV2")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ETSI;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ETSIV2\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ETSIV3")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ETSIV3;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ETSIV3\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "UK")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_UK;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"UK\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "RUSSIA")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_RUSSIA;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"RUSSIA\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "INDIA")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_INDIA;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"INDIA\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi88")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ANS88;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ANSI88\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi92")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ANS92;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ANSI92\"\n");</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "ansi95")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.switchType = LSI_SW_ANS95;</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpLink->switchType = \"ANSI95\"\n");</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid linktype of \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_switch_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid mtp3_link switchType = %s\n", parm->var);</span>
                                return FTDM_FAIL;
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                mtp3Link.switchType = sng_switch_type_map[ret].tril_mtp3_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtp3_link switchType = %s\n", sng_switch_type_map[ret].sng_type);</span>
                        }
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "ssf")) {
<span style="color: #A00000">-                        if (!strcasecmp(parm->val, "nat")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.ssf = SSF_NAT;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "int")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.ssf = SSF_INTL;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "spare")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.ssf = SSF_SPARE;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "res")) {</span>
<span style="color: #A00000">-                                mtpLink->mtp3.ssf = SSF_RES;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid ssf of \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_ssf_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid mtp3_link ssf = %s\n", parm->var);</span>
                                return FTDM_FAIL;
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                mtp3Link.ssf = sng_ssf_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtp3_link ssf = %s\n", sng_ssf_type_map[ret].sng_type);</span>
                        }
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "slc")) {
<span style="color: #A00000">-                        mtpLink->mtp3.slc = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpLink->slc = \"%d\"\n",mtpLink->mtp3.slc);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t1")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t1 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t1 = \"%d\"\n",mtpLink->mtp2.t1);</span>
<span style="color: #00A000">+                        mtp3Link.slc = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 Link slc = %d\n",mtp3Link.slc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "linkset")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.linkSetId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 Link linkset = %d\n",mtp3Link.linkSetId);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t1")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.t1 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t1 = %d\n",mtp3Link.t1);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t2")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.t2 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t2 = %d\n",mtp3Link.t2);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t3")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.t3 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t3 = %d\n",mtp3Link.t3);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t4")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.t4 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t4 = %d\n",mtp3Link.t4);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t5")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.t5 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t5 = %d\n",mtp3Link.t5);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t2")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t2 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t2 = \"%d\"\n",mtpLink->mtp2.t2);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t7")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t3")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t3 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t3 = \"%d\"\n",mtpLink->mtp2.t3);</span>
<span style="color: #00A000">+                        mtp3Link.t7 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t7 = %d\n",mtp3Link.t7);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t4n")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t4n = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t4n = \"%d\"\n",mtpLink->mtp2.t4n);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t12")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t4e")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t4e = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t4e = \"%d\"\n",mtpLink->mtp2.t4e);</span>
<span style="color: #00A000">+                        mtp3Link.t12 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t12 = %d\n",mtp3Link.t12);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t5")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t5 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t5 = \"%d\"\n",mtpLink->mtp2.t5);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t13")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t6")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t6 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t6 = \"%d\"\n",mtpLink->mtp2.t6);</span>
<span style="color: #00A000">+                        mtp3Link.t13 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t13 = %d\n",mtp3Link.t13);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp2.t7")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp2.t7 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp2 t7 = \"%d\"\n",mtpLink->mtp2.t7);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t14")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t1")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t1 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t1 = \"%d\"\n",mtpLink->mtp3.t1);</span>
<span style="color: #00A000">+                        mtp3Link.t14 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t14 = %d\n",mtp3Link.t14);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t2")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t2 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t2 = \"%d\"\n",mtpLink->mtp3.t2);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t17")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t3")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t3 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t3 = \"%d\"\n",mtpLink->mtp3.t3);</span>
<span style="color: #00A000">+                        mtp3Link.t17 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t17 = %d\n",mtp3Link.t17);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t4")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t4 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t4 = \"%d\"\n",mtpLink->mtp3.t4);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t22")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t5")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t5 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t5 = \"%d\"\n",mtpLink->mtp3.t5);</span>
<span style="color: #00A000">+                        mtp3Link.t22 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t22 = %d\n",mtp3Link.t22);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t7")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t7 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t7 = \"%d\"\n",mtpLink->mtp3.t7);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t23")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t12")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t12 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t12 = \"%d\"\n",mtpLink->mtp3.t12);</span>
<span style="color: #00A000">+                        mtp3Link.t23 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t23 = %d\n",mtp3Link.t23);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t13")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t13 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t13 = \"%d\"\n",mtpLink->mtp3.t13);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t24")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t14")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t14 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t14 = \"%d\"\n",mtpLink->mtp3.t14);</span>
<span style="color: #00A000">+                        mtp3Link.t24 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t24 = %d\n",mtp3Link.t24);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t17")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t17 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t17 = \"%d\"\n",mtpLink->mtp3.t17);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t31")) {</span>
<span style="color: #00A000">+                        mtp3Link.t31 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t31 = %d\n",mtp3Link.t31);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t22")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t22 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t22 = \"%d\"\n",mtpLink->mtp3.t22);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t32")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t23")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t23 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t23 = \"%d\"\n",mtpLink->mtp3.t23);</span>
<span style="color: #00A000">+                        mtp3Link.t32 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t32 = %d\n",mtp3Link.t32);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t24")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t24 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t24 = \"%d\"\n",mtpLink->mtp3.t24);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t33")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t31")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t31 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t31 = \"%d\"\n",mtpLink->mtp3.t31);</span>
<span style="color: #00A000">+                        mtp3Link.t33 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t33 = %d\n",mtp3Link.t33);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t32")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t32 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t32 = \"%d\"\n",mtpLink->mtp3.t32);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t34")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t33")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t33 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t33 = \"%d\"\n",mtpLink->mtp3.t33);</span>
<span style="color: #00A000">+                        mtp3Link.t34 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t34 = %d\n",mtp3Link.t34);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t34")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t34 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t34 = \"%d\"\n",mtpLink->mtp3.t34);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t35")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t35")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t35 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t35 = \"%d\"\n",mtpLink->mtp3.t35);</span>
<span style="color: #00A000">+                        mtp3Link.t35 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t35 = %d\n",mtp3Link.t35);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t36")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t36 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t36 = \"%d\"\n",mtpLink->mtp3.t36);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t36")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.t37")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.t37 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t37 = \"%d\"\n",mtpLink->mtp3.t37);</span>
<span style="color: #00A000">+                        mtp3Link.t36 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t36 = %d\n",mtp3Link.t36);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.tcraft")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.tcraft = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 tcraft = \"%d\"\n",mtpLink->mtp3.tcraft);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "t37")) {</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.tflc")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.tflc = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 tflc = \"%d\"\n",mtpLink->mtp3.tflc);</span>
<span style="color: #00A000">+                        mtp3Link.t37 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t37 = %d\n",mtp3Link.t37);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp3.tbnd")) {</span>
<span style="color: #A00000">-                        mtpLink->mtp3.tbnd = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 tbnd = \"%d\"\n",mtpLink->mtp3.tbnd);</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "tcraft")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.tcraft = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 tcraft = %d\n",mtp3Link.tcraft);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "tflc")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.tflc = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 tflc = %d\n",mtp3Link.tflc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "tbnd")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtp3Link.tbnd = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 tbnd = %d\n",mtp3Link.tbnd);</span>
                /**********************************************************************/
                } else {
<span style="color: #A00000">-                        SS7_ERROR("\tFound an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter %s!\n", parm->val);</span>
                        return FTDM_FAIL;
<span style="color: #00A000">+                /**********************************************************************/</span>
                }
<span style="color: #A00000">-        </span>
<span style="color: #A00000">-                /* move to the next parameter */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move to the next parmeter */</span>
                parm = parm + 1;
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* store the link in global structure */</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_mtp3_link(&mtp3Link);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* move the linktype, switchtype and ssf to the linkset */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].linkType == 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].linkType = mtp3Link.linkType;</span>
<span style="color: #00A000">+        } else if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].linkType != mtp3Link.linkType) {</span>
<span style="color: #00A000">+                SS7_ERROR("Trying to add an MTP3 Link to a Linkset with a different linkType: mtp3.id=%d, mtp3.name=%s, mtp3.linktype=%d, linkset.id=%d, linkset.linktype=%d\n",</span>
<span style="color: #00A000">+                                        mtp3Link.id, mtp3Link.name, mtp3Link.linkType,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].id, g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].linkType);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                /* should print that all is ok...*/</span>
        }
<span style="color: #A00000">-        </span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].switchType == 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].switchType = mtp3Link.switchType;</span>
<span style="color: #00A000">+        } else if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].switchType != mtp3Link.switchType) {</span>
<span style="color: #00A000">+                SS7_ERROR("Trying to add an MTP3 Link to a Linkset with a different switchType: mtp3.id=%d, mtp3.name=%s, mtp3.switchtype=%d, linkset.id=%d, linkset.switchtype=%d\n",</span>
<span style="color: #00A000">+                                        mtp3Link.id, mtp3Link.name, mtp3Link.switchType,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].id, g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].switchType);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                /* should print that all is ok...*/</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].ssf == 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].ssf = mtp3Link.ssf;</span>
<span style="color: #00A000">+        } else if (g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].ssf != mtp3Link.ssf) {</span>
<span style="color: #00A000">+                SS7_ERROR("Trying to add an MTP3 Link to a Linkset with a different ssf: mtp3.id=%d, mtp3.name=%s, mtp3.ssf=%d, linkset.id=%d, linkset.ssf=%d\n",</span>
<span style="color: #00A000">+                                        mtp3Link.id, mtp3Link.name, mtp3Link.ssf,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].id, g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3Link.linkSetId].ssf);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                /* should print that all is ok...*/</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp_linksets(ftdm_conf_node_t *mtp_linksets)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *mtp_linkset = NULL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at mtp_linksets */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp_linksets->name, "mtp_linksets")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp_linksets\"!\n",mtp_linksets->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp_linksets\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* extract the mtp_links */</span>
<span style="color: #00A000">+        mtp_linkset = mtp_linksets->child;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* run through all of the mtp_linksets found */</span>
<span style="color: #00A000">+        while (mtp_linkset != NULL) {</span>
<span style="color: #00A000">+                /* try to the parse mtp_linkset */</span>
<span style="color: #00A000">+                if (ftmod_ss7_parse_mtp_linkset(mtp_linkset)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to parse \"mtp_linkset\"!\n");</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move on to the next linkset */</span>
<span style="color: #00A000">+                mtp_linkset = mtp_linkset->next;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        } /* while (mtp_linkset != NULL) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_mtp_linkset(ftdm_conf_node_t *mtp_linkset)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_link_set_t                         mtpLinkSet;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = mtp_linkset->parameters;</span>
<span style="color: #00A000">+        int                                                 num_parms = mtp_linkset->n_parameters;</span>
<span style="color: #00A000">+        int                                                 i;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the mtpLinkSet structure */</span>
<span style="color: #00A000">+        memset(&mtpLinkSet, 0x0, sizeof(mtpLinkSet));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at mtp_linkset */</span>
<span style="color: #00A000">+        if (strcasecmp(mtp_linkset->name, "mtp_linkset")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"mtp_linkset\"!\n",mtp_linkset->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"mtp_linkset\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* extract all the information from the parameters */</span>
<span style="color: #00A000">+        for (i = 0; i < num_parms; i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (!strcasecmp(parm->var, "name")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)mtpLinkSet.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtpLinkSet named = %s\n", mtpLinkSet.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtpLinkSet.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found mtpLinkSet id = %d\n", mtpLinkSet.id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "apc")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtpLinkSet.apc = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found mtpLinkSet apc = %d\n", mtpLinkSet.apc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "minActive")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtpLinkSet.minActive = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found mtpLinkSet minActive = %d\n", mtpLinkSet.minActive);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move to the next parmeter */</span>
<span style="color: #00A000">+                parm = parm + 1;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_mtpLinkSet(&mtpLinkSet);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* go through all the mtp3 links and fill in the apc */</span>
<span style="color: #00A000">+        i = 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.mtp3Link[i].id != 0) {</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.mtp3Link[i].linkSetId == mtpLinkSet.id) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtp3Link[i].apc = mtpLinkSet.apc;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                i++;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -813,6 +1269,7 @@ static int ftmod_ss7_parse_mtp_route(ftdm_conf_node_t *mtp_route)</span>
        int                                                 num_parms = mtp_route->n_parameters;
        int                                                 i;
<span style="color: #00A000">+        /* initalize the mtpRoute structure */</span>
        memset(&mtpRoute, 0x0, sizeof(mtpRoute));
        /* confirm that we are looking at an mtp_link */
<span style="color: #800080; font-weight: bold">@@ -824,119 +1281,120 @@ static int ftmod_ss7_parse_mtp_route(ftdm_conf_node_t *mtp_route)</span>
        }
        for (i = 0; i < num_parms; i++) {
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
                /* try to match the parameter to what we expect */
<span style="color: #A00000">-                /**********************************************************************/</span>
                if (!strcasecmp(parm->var, "name")) {
<span style="color: #A00000">-                        strncpy((char *)mtpRoute.name, parm->val, MAX_NAME_LEN-1);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound an \"mtp_route\" named = %s\n", mtpRoute.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)mtpRoute.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtpRoute named = %s\n", mtpRoute.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtpRoute.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtpRoute id = %d\n", mtpRoute.id);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "dpc")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.dpc = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtpRoute->dpc = %d\n", mtpRoute.dpc);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp_linkset")) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* find the linkset by it's name */</span>
<span style="color: #A00000">-                        int x = 1;</span>
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id != 0) {</span>
<span style="color: #A00000">-                                /* check if the name matches */</span>
<span style="color: #A00000">-                                if (!strcasecmp((char *)g_ftdm_sngss7_data.cfg.mtpLinkSet[x].name, parm->val)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        /* now, harvest the required infomormation from the global structure */</span>
<span style="color: #A00000">-                                        mtpRoute.linkType                = g_ftdm_sngss7_data.cfg.mtpLinkSet[x].linkType;</span>
<span style="color: #A00000">-                                        mtpRoute.switchType                = g_ftdm_sngss7_data.cfg.mtpLinkSet[x].switchType;</span>
<span style="color: #A00000">-                                        mtpRoute.ssf                        = g_ftdm_sngss7_data.cfg.mtpLinkSet[x].ssf;</span>
<span style="color: #A00000">-                                        mtpRoute.linkSetId                = g_ftdm_sngss7_data.cfg.mtpLinkSet[x].id;</span>
<span style="color: #A00000">-                                        cmbLinkSetId++;</span>
<span style="color: #A00000">-                                        mtpRoute.cmbLinkSetId        = cmbLinkSetId;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        /* update the linkset with the new cmbLinkSet value */</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.mtpLinkSet[x].numLinks++;</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.mtpLinkSet[x].links[g_ftdm_sngss7_data.cfg.mtpLinkSet[x].numLinks-1] = mtpRoute.cmbLinkSetId;</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                x++;</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* check why we exited the wile loop ... and react accordingly */</span>
<span style="color: #A00000">-                        if (mtpRoute.cmbLinkSetId == 0) {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFailed to find the linkset = \"%s\"!\n", parm->val);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtp3_route->linkset = %s\n", parm->val);</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtpRoute dpc = %d\n", mtpRoute.dpc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "linksetId")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        mtpRoute.linkSetId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtpRoute linkset = %s\n", parm->val);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isSTP")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        if (!strcasecmp(parm->val, "no")) {
                                mtpRoute.isSTP = 0;
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpRoute->isSTP = no\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtpRoute isSTP = no\n");</span>
                        } else if (!strcasecmp(parm->val, "yes")) {
                                mtpRoute.isSTP = 1;
<span style="color: #A00000">-                                SS7_DEBUG("\tFound mtpRoute->isSTP = yes\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an mtpRoute isSTP = yes\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid parameter for isSTP \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid parameter for isSTP %s!\n", parm->val);</span>
                         return FTDM_FAIL;
                        }
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t6")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t6 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t6 = \"%d\"\n",mtpRoute.t6);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t6 = %d\n",mtpRoute.t6);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t8")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t8 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t8 = \"%d\"\n",mtpRoute.t8);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t8 = %d\n",mtpRoute.t8);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t10")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t10 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t10 = \"%d\"\n",mtpRoute.t10);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t10 = %d\n",mtpRoute.t10);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t11")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t11 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t11 = \"%d\"\n",mtpRoute.t11);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t11 = %d\n",mtpRoute.t11);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t15")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t15 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t15 = \"%d\"\n",mtpRoute.t15);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t15 = %d\n",mtpRoute.t15);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t16")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t16 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t16 = \"%d\"\n",mtpRoute.t16);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t16 = %d\n",mtpRoute.t16);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t18")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t18 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t18 = \"%d\"\n",mtpRoute.t18);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t18 = %d\n",mtpRoute.t18);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t19")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t19 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t19 = \"%d\"\n",mtpRoute.t19);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t19 = %d\n",mtpRoute.t19);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t21")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t21 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t21 = \"%d\"\n",mtpRoute.t21);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t21 = %d\n",mtpRoute.t21);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t25")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t25 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t25 = \"%d\"\n",mtpRoute.t25);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t25 = %d\n",mtpRoute.t25);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "mtp3.t26")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        mtpRoute.t26 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound mtp3 t26 = \"%d\"\n",mtpRoute.t26);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an mtp3 t26 = %d\n",mtpRoute.t26);</span>
                /**********************************************************************/
                } else {
<span style="color: #A00000">-                        SS7_ERROR("\tFound an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter \"%s\"!\n", parm->val);</span>
                        return FTDM_FAIL;
<span style="color: #A00000">-</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                }
                /* move to the next parameter */
                parm = parm + 1;
        }
<span style="color: #A00000">-        ftmod_ss7_fill_in_nsap(&mtpRoute);</span>
<span style="color: #00A000">+        /* pull up the linktype, switchtype, and SSF from the linkset */</span>
<span style="color: #00A000">+        mtpRoute.linkType = g_ftdm_sngss7_data.cfg.mtpLinkSet[mtpRoute.linkSetId].linkType;</span>
<span style="color: #00A000">+        mtpRoute.switchType = g_ftdm_sngss7_data.cfg.mtpLinkSet[mtpRoute.linkSetId].switchType;</span>
<span style="color: #00A000">+        mtpRoute.ssf = g_ftdm_sngss7_data.cfg.mtpLinkSet[mtpRoute.linkSetId].ssf;</span>
<span style="color: #A00000">-        ftmod_ss7_fill_in_mtp3_route(&mtpRoute);</span>
<span style="color: #00A000">+        /* fill in the rest of the values in the mtpRoute struct */</span>
<span style="color: #00A000">+        mtpRoute.nwId = mtpRoute.id;</span>
<span style="color: #00A000">+        mtpRoute.cmbLinkSetId = mtpRoute.id;</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_mtp3_route(&mtpRoute);</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_nsap(&mtpRoute);</span>
        return FTDM_SUCCESS;
}
<span style="color: #800080; font-weight: bold">@@ -979,10 +1437,9 @@ static int ftmod_ss7_parse_isup_interface(ftdm_conf_node_t *isup_interface)</span>
        ftdm_conf_parameter_t        *parm = isup_interface->parameters;
        int                                                num_parms = isup_interface->n_parameters;
        int                                                i;
<span style="color: #A00000">-        int                                                linkSetId;</span>
<span style="color: #A00000">-        int                                                flag_cld_nadi = 0;</span>
<span style="color: #A00000">-        int                                                flag_clg_nadi = 0;</span>
<span style="color: #00A000">+        int                                                ret;</span>
<span style="color: #00A000">+        /* initalize the isup intf and isap structure */</span>
        memset(&sng_isup, 0x0, sizeof(sng_isup));
        memset(&sng_isap, 0x0, sizeof(sng_isap));
<span style="color: #800080; font-weight: bold">@@ -996,56 +1453,30 @@ static int ftmod_ss7_parse_isup_interface(ftdm_conf_node_t *isup_interface)</span>
        for (i = 0; i < num_parms; i++) {
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
                /* try to match the parameter to what we expect */
<span style="color: #A00000">-                /**********************************************************************/</span>
                if (!strcasecmp(parm->var, "name")) {
<span style="color: #A00000">-                        strncpy((char *)sng_isup.name, parm->val, MAX_NAME_LEN-1);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound an \"isup_interface\" named = %s\n", sng_isup.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)sng_isup.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an isup_interface named = %s\n", sng_isup.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_isup.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an isup id = %d\n", sng_isup.id);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "spc")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.spc = atoi(parm->val);
                        g_ftdm_sngss7_data.cfg.spc = sng_isup.spc;
<span style="color: #A00000">-                        SS7_DEBUG("\tFound SPC = %d\n", sng_isup.spc);</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "mtp_route")) {</span>
<span style="color: #A00000">-                        /* find the route by it's name */</span>
<span style="color: #A00000">-                        int x = 1;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.mtpRoute[x].id != 0) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* check if the name matches */</span>
<span style="color: #A00000">-                                if (!strcasecmp((char *)g_ftdm_sngss7_data.cfg.mtpRoute[x].name, parm->val)) {</span>
<span style="color: #A00000">-                                        /* now, harvest the required information from the global structure */</span>
<span style="color: #A00000">-                                        sng_isup.mtpRouteId                = g_ftdm_sngss7_data.cfg.mtpRoute[x].id;</span>
<span style="color: #A00000">-                                        sng_isup.dpc                        = g_ftdm_sngss7_data.cfg.mtpRoute[x].dpc;</span>
<span style="color: #A00000">-                                        sng_isup.switchType                 = g_ftdm_sngss7_data.cfg.mtpRoute[x].switchType;</span>
<span style="color: #A00000">-                                        sng_isap.switchType                = g_ftdm_sngss7_data.cfg.mtpRoute[x].switchType;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        /* find the NSAP corresponding to this switchType and SSF */</span>
<span style="color: #A00000">-                                        int z = 1;</span>
<span style="color: #A00000">-                                        while (g_ftdm_sngss7_data.cfg.nsap[z].id != 0) {</span>
<span style="color: #A00000">-                                                if ((g_ftdm_sngss7_data.cfg.nsap[z].linkType == g_ftdm_sngss7_data.cfg.mtpRoute[x].linkType) &&</span>
<span style="color: #A00000">-                                                        (g_ftdm_sngss7_data.cfg.nsap[z].switchType == g_ftdm_sngss7_data.cfg.mtpRoute[x].switchType) &&</span>
<span style="color: #A00000">-                                                        (g_ftdm_sngss7_data.cfg.nsap[z].ssf == g_ftdm_sngss7_data.cfg.mtpRoute[x].ssf)) {</span>
<span style="color: #A00000">-                                                                sng_isup.nwId         = g_ftdm_sngss7_data.cfg.nsap[z].nwId;</span>
<span style="color: #A00000">-                                                        /* we have a match so break out of this loop */</span>
<span style="color: #A00000">-                                                        break;</span>
<span style="color: #A00000">-                                                }</span>
<span style="color: #A00000">-                                                /* move on to the next one */</span>
<span style="color: #A00000">-                                                z++;</span>
<span style="color: #A00000">-                                        }</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                x++;</span>
<span style="color: #A00000">-                        } /* while (g_ftdm_sngss7_data.cfg.mtpRoute[x].id != 0) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* check why we exited the while loop ... and react accordingly */</span>
<span style="color: #A00000">-                        if (sng_isup.mtpRouteId == 0) {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFailed to find the MTP3 Route = \"%s\"!\n", parm->val);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound MTP3 Route = %s\n", parm->val);</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an isup SPC = %d\n", sng_isup.spc);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "mtprouteId")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_isup.mtpRouteId=atoi(parm->val);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an isup mptRouteId = %d\n", sng_isup.mtpRouteId);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "min_digits")) {
                        sng_isup.min_digits = atoi(parm->val);
<span style="color: #800080; font-weight: bold">@@ -1053,300 +1484,544 @@ static int ftmod_ss7_parse_isup_interface(ftdm_conf_node_t *isup_interface)</span>
                        SS7_DEBUG("\tFound min_digits = %d\n", sng_isup.min_digits);
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "ssf")) {
<span style="color: #A00000">-                        if (!strcasecmp(parm->val, "nat")) {</span>
<span style="color: #A00000">-                                sng_isup.ssf = SSF_NAT;</span>
<span style="color: #A00000">-                                sng_isap.ssf = SSF_NAT;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "int")) {</span>
<span style="color: #A00000">-                                sng_isup.ssf = SSF_INTL;</span>
<span style="color: #A00000">-                                sng_isap.ssf = SSF_INTL;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "spare")) {</span>
<span style="color: #A00000">-                                sng_isup.ssf = SSF_SPARE;</span>
<span style="color: #A00000">-                                sng_isap.ssf = SSF_SPARE;</span>
<span style="color: #A00000">-                        } else if (!strcasecmp(parm->val, "res")) {</span>
<span style="color: #A00000">-                                sng_isup.ssf = SSF_RES;</span>
<span style="color: #A00000">-                                sng_isap.ssf = SSF_RES;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                SS7_ERROR("\tFound an invalid ssf of \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_ssf_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid isup ssf = %s\n", parm->var);</span>
                                return FTDM_FAIL;
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                sng_isup.ssf = sng_ssf_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                sng_isap.ssf = sng_ssf_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an isup ssf = %s\n", sng_ssf_type_map[ret].sng_type);</span>
                        }
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "license")) {</span>
<span style="color: #A00000">-                /**********************************************************************/</span>
<span style="color: #A00000">-                        strncpy(g_ftdm_sngss7_data.cfg.license, parm->val, MAX_PATH-1);</span>
<span style="color: #A00000">-                        strncpy(g_ftdm_sngss7_data.cfg.signature, parm->val, MAX_PATH-1);</span>
<span style="color: #A00000">-                        strcat(g_ftdm_sngss7_data.cfg.signature, ".sig");</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound license file = %s\n", g_ftdm_sngss7_data.cfg.license);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound signature file = %s\n", g_ftdm_sngss7_data.cfg.signature);        </span>
<span style="color: #A00000">-                /**********************************************************************/</span>
                } else if (!strcasecmp(parm->var, "isup.t1")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t1 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t1 = \"%d\"\n",sng_isap.t1);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t1 = %d\n",sng_isap.t1);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t2")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t2 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t2 = \"%d\"\n",sng_isap.t2);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t2 = %d\n",sng_isap.t2);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t4")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t4 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t4 = \"%d\"\n",sng_isup.t4);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t4 = %d\n",sng_isup.t4);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t5")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t5 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t5 = \"%d\"\n",sng_isap.t5);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t5 = %d\n",sng_isap.t5);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t6")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t6 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t6 = \"%d\"\n",sng_isap.t6);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t6 = %d\n",sng_isap.t6);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t7")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t7 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t7 = \"%d\"\n",sng_isap.t7);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t7 = %d\n",sng_isap.t7);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t8")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t8 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t8 = \"%d\"\n",sng_isap.t8);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t8 = %d\n",sng_isap.t8);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t9")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t9 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t9 = \"%d\"\n",sng_isap.t9);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t9 = %d\n",sng_isap.t9);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t10")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t10 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t10 = \"%d\"\n",sng_isup.t10);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t10 = %d\n",sng_isup.t10);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t11")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t11 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t11 = \"%d\"\n",sng_isup.t11);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t11 = %d\n",sng_isup.t11);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t18")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t18 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t18 = \"%d\"\n",sng_isup.t18);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t18 = %d\n",sng_isup.t18);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t19")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t19 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t19 = \"%d\"\n",sng_isup.t19);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t19 = %d\n",sng_isup.t19);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t20")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t20 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t20 = \"%d\"\n",sng_isup.t20);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t20 = %d\n",sng_isup.t20);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t21")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t21 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t21 = \"%d\"\n",sng_isup.t21);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t21 = %d\n",sng_isup.t21);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t22")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t22 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t22 = \"%d\"\n",sng_isup.t22);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t22 = %d\n",sng_isup.t22);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t23")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t23 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t23 = \"%d\"\n",sng_isup.t23);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t23 = %d\n",sng_isup.t23);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t24")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t24 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t24 = \"%d\"\n",sng_isup.t24);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t24 = %d\n",sng_isup.t24);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t25")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t25 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t25 = \"%d\"\n",sng_isup.t25);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t25 = %d\n",sng_isup.t25);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t26")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t26 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t26 = \"%d\"\n",sng_isup.t26);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t26 = %d\n",sng_isup.t26);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t28")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t28 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t28 = \"%d\"\n",sng_isup.t28);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t28 = %d\n",sng_isup.t28);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t29")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t29 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t29 = \"%d\"\n",sng_isup.t29);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t29 = %d\n",sng_isup.t29);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t30")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t30 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t30 = \"%d\"\n",sng_isup.t30);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t30 = %d\n",sng_isup.t30);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t31")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t31 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t31 = \"%d\"\n",sng_isap.t31);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t31 = %d\n",sng_isap.t31);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t32")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t32 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t32 = \"%d\"\n",sng_isup.t32);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t32 = %d\n",sng_isup.t32);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t33")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t33 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t33 = \"%d\"\n",sng_isap.t33);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t33 = %d\n",sng_isap.t33);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t34")) {
<span style="color: #A00000">-                        sng_isap.t34 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t34 = \"%d\"\n",sng_isap.t34);</span>
                /**********************************************************************/
<span style="color: #A00000">-                } else if (!strcasecmp(parm->var, "isup.t35")) {</span>
<span style="color: #A00000">-                        sng_isup.t35 = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t35 = \"%d\"\n",sng_isup.t35);</span>
<span style="color: #00A000">+                        sng_isap.t34 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t34 = %d\n",sng_isap.t34);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t36")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.t36 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t36 = \"%d\"\n",sng_isap.t36);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t36 = %d\n",sng_isap.t36);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t37")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t37 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t37 = \"%d\"\n",sng_isup.t37);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t37 = %d\n",sng_isup.t37);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t38")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t38 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t38 = \"%d\"\n",sng_isup.t38);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t38 = %d\n",sng_isup.t38);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.t39")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.t39 = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup t39 = \"%d\"\n",sng_isup.t39);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t39 = %d\n",sng_isup.t39);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tccr")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tccr = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tccr = \"%d\"\n",sng_isap.tccr);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tccr = %d\n",sng_isap.tccr);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tccrt")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tccrt = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tccrt = \"%d\"\n",sng_isap.tccrt);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tccrt = %d\n",sng_isap.tccrt);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tex")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tex = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tex = \"%d\"\n",sng_isap.tex);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tex = %d\n",sng_isap.tex);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tect")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tect = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tect = \"%d\"\n",sng_isap.tect);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tect = %d\n",sng_isap.tect);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tcrm")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tcrm = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tcrm = \"%d\"\n",sng_isap.tcrm);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tcrm = %d\n",sng_isap.tcrm);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tcra")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tcra = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tcra = \"%d\"\n",sng_isap.tcra);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tcra = %d\n",sng_isap.tcra);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tfgr")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.tfgr = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tfgr = \"%d\"\n",sng_isup.tfgr);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tfgr = %d\n",sng_isup.tfgr);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.trelrsp")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.trelrsp = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup trelrsp = \"%d\"\n",sng_isap.trelrsp);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup trelrsp = %d\n",sng_isap.trelrsp);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tfnlrelrsp")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tfnlrelrsp = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tfnlrelrsp = \"%d\"\n",sng_isap.tfnlrelrsp);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tfnlrelrsp = %d\n",sng_isap.tfnlrelrsp);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tfnlrelrsp")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isap.tfnlrelrsp = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tfnlrelrsp = \"%d\"\n",sng_isap.tfnlrelrsp);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tfnlrelrsp = %d\n",sng_isap.tfnlrelrsp);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tpause")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.tpause = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tpause = \"%d\"\n",sng_isup.tpause);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tpause = %d\n",sng_isup.tpause);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "isup.tstaenq")) {
<span style="color: #00A000">+                /**********************************************************************/</span>
                        sng_isup.tstaenq = atoi(parm->val);
<span style="color: #A00000">-                        SS7_DEBUG("\tFound isup tstaenq = \"%d\"\n",sng_isup.tstaenq);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tstaenq = %d\n",sng_isup.tstaenq);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter %s!\n", parm->val);</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* move to the next parameter */</span>
<span style="color: #00A000">+                parm = parm + 1;</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* default the interface to paused state */</span>
<span style="color: #00A000">+        sngss7_set_flag(&sng_isup, SNGSS7_PAUSED);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* trickle down the SPC to all sub entities */</span>
<span style="color: #00A000">+        int        linkSetId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        linkSetId = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].linkSetId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        i = 1;</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.mtp3Link[i].id != 0) {</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.mtp3Link[i].linkSetId == linkSetId) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.mtp3Link[i].spc = g_ftdm_sngss7_data.cfg.spc;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                i++;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* pull values from the lower levels */</span>
<span style="color: #00A000">+        sng_isup.dpc = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].dpc;</span>
<span style="color: #00A000">+        sng_isup.switchType = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].switchType;</span>
<span style="color: #00A000">+        sng_isup.nwId = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].nwId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sng_isap.switchType = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].switchType;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_isap(&sng_isap);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        sng_isup.isap = sng_isap.id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_isup_interface(&sng_isup);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* setup the self mtp3 route */</span>
<span style="color: #00A000">+        i = sng_isup.mtpRouteId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if(ftmod_ss7_fill_in_self_route(sng_isup.spc,</span>
<span style="color: #00A000">+                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].linkType,</span>
<span style="color: #00A000">+                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].switchType,</span>
<span style="color: #00A000">+                                                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].ssf)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                SS7_ERROR("Failed to fill in self route structure!\n");</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_cc_spans(ftdm_conf_node_t *cc_spans)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_conf_node_t        *cc_span = NULL;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at cc_spans */</span>
<span style="color: #00A000">+        if (strcasecmp(cc_spans->name, "cc_spans")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"cc_spans\"!\n",cc_spans->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"cc_spans\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* extract the cc_spans */</span>
<span style="color: #00A000">+        cc_span = cc_spans->child;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        while (cc_span != NULL) {</span>
<span style="color: #00A000">+                /* parse the found cc_span */</span>
<span style="color: #00A000">+                if (ftmod_ss7_parse_cc_span(cc_span)) {</span>
<span style="color: #00A000">+                        SS7_ERROR("Failed to parse \"cc_span\"\n");</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* go to the next cc_span */</span>
<span style="color: #00A000">+                cc_span = cc_span->next;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_parse_cc_span(ftdm_conf_node_t *cc_span)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        sng_ccSpan_t                        sng_ccSpan;</span>
<span style="color: #00A000">+        ftdm_conf_parameter_t        *parm = cc_span->parameters;</span>
<span style="color: #00A000">+        int                                                num_parms = cc_span->n_parameters;</span>
<span style="color: #00A000">+        int                                                flag_clg_nadi = 0;</span>
<span style="color: #00A000">+        int                                                flag_cld_nadi = 0;</span>
<span style="color: #00A000">+        int                                                i;</span>
<span style="color: #00A000">+        int                                                ret;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* initalize the ccSpan structure */</span>
<span style="color: #00A000">+        memset(&sng_ccSpan, 0x0, sizeof(sng_ccSpan));</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* confirm that we are looking at an mtp_link */</span>
<span style="color: #00A000">+        if (strcasecmp(cc_span->name, "cc_span")) {</span>
<span style="color: #00A000">+                SS7_ERROR("We're looking at \"%s\"...but we're supposed to be looking at \"cc_span\"!\n",cc_span->name);</span>
<span style="color: #00A000">+                return FTDM_FAIL;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Parsing \"cc_span\"...\n");</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        for (i = 0; i < num_parms; i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* try to match the parameter to what we expect */</span>
<span style="color: #00A000">+                if (!strcasecmp(parm->var, "name")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy((char *)sng_ccSpan.name, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an ccSpan named = %s\n", sng_ccSpan.name);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "id")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.id = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an ccSpan id = %d\n", sng_ccSpan.id);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "procid")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.procId = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an ccSpan procId = %d\n", sng_ccSpan.procId);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "ch_map")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        strcpy(sng_ccSpan.ch_map, parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found channel map %s\n", sng_ccSpan.ch_map);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "typeCntrl")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_cic_cntrl_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid ccSpan typeCntrl = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                sng_ccSpan.typeCntrl = sng_cic_cntrl_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an ccSpan typeCntrl = %s\n", sng_cic_cntrl_type_map[ret].sng_type);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "ssf")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_ssf_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid ccSpan ssf = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                sng_ccSpan.ssf = sng_ssf_type_map[ret].tril_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an ccSpan ssf = %s\n", sng_ssf_type_map[ret].sng_type);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "switchType")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        ret = find_switch_type_in_map(parm->val);</span>
<span style="color: #00A000">+                        if (ret == -1) {</span>
<span style="color: #00A000">+                                SS7_ERROR("Found an invalid ccSpan switchType = %s\n", parm->var);</span>
<span style="color: #00A000">+                                return FTDM_FAIL;</span>
<span style="color: #00A000">+                        } else {</span>
<span style="color: #00A000">+                                sng_ccSpan.switchType = sng_switch_type_map[ret].tril_isup_type;</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found an ccSpan switchType = %s\n", sng_switch_type_map[ret].sng_type);</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "cicbase")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.cicbase = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a cicbase = %d\n", sng_ccSpan.cicbase);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup_interface")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.isupInf = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found an isup_interface = %d\n",sng_ccSpan.isupInf);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "min_digits")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.min_digits = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found a min_digits = %d\n",sng_ccSpan.min_digits);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "clg_nadi")) {
                /**********************************************************************/
                        /* throw the flag so that we know we got this optional parameter */
                        flag_clg_nadi = 1;
<span style="color: #A00000">-                        sng_isup.clg_nadi = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound default CLG_NADI value = %d\n", sng_isup.clg_nadi);</span>
<span style="color: #00A000">+                        sng_ccSpan.clg_nadi = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found default CLG_NADI parm->value = %d\n", sng_ccSpan.clg_nadi);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "cld_nadi")) {
                /**********************************************************************/
                        /* throw the flag so that we know we got this optional parameter */
                        flag_cld_nadi = 1;
<span style="color: #A00000">-                        sng_isup.cld_nadi = atoi(parm->val);</span>
<span style="color: #A00000">-                        SS7_DEBUG("\tFound default CLD_NADI value = %d\n", sng_isup.cld_nadi);</span>
<span style="color: #00A000">+                        sng_ccSpan.cld_nadi = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found default CLD_NADI parm->value = %d\n", sng_ccSpan.cld_nadi);</span>
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "obci_bita")) {
                /**********************************************************************/
                        if (*parm->val == '1') {
<span style="color: #A00000">-                                sngss7_set_options(&sng_isup, SNGSS7_ACM_OBCI_BITA);</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound Optional Backwards Indicator: Bit A (early media) enable option\n");</span>
<span style="color: #00A000">+                                sngss7_set_options(&sng_ccSpan, SNGSS7_ACM_OBCI_BITA);</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found Optional Backwards Indicator: Bit A (early media) enable option\n");</span>
                        } else if (*parm->val == '0') {
<span style="color: #A00000">-                                sngss7_clear_options(&sng_isup, SNGSS7_ACM_OBCI_BITA);</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound Optional Backwards Indicator: Bit A (early media) disable option\n");</span>
<span style="color: #00A000">+                                sngss7_clear_options(&sng_ccSpan, SNGSS7_ACM_OBCI_BITA);</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found Optional Backwards Indicator: Bit A (early media) disable option\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_DEBUG("\tInvalid value for \"obci_bita\" option\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Invalid parm->value for obci_bita option\n");</span>
                        }
                /**********************************************************************/
                } else if (!strcasecmp(parm->var, "lpa_on_cot")) {
                /**********************************************************************/
                        if (*parm->val == '1') {
<span style="color: #A00000">-                                sngss7_set_options(&sng_isup, SNGSS7_LPA_FOR_COT);</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound Tx LPA on COT enable option\n");</span>
<span style="color: #00A000">+                                sngss7_set_options(&sng_ccSpan, SNGSS7_LPA_FOR_COT);</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found Tx LPA on COT enable option\n");</span>
                        } else if (*parm->val == '0') {
<span style="color: #A00000">-                                sngss7_clear_options(&sng_isup, SNGSS7_LPA_FOR_COT);</span>
<span style="color: #A00000">-                                SS7_DEBUG("\tFound Tx LPA on COT disable option\n");</span>
<span style="color: #00A000">+                                sngss7_clear_options(&sng_ccSpan, SNGSS7_LPA_FOR_COT);</span>
<span style="color: #00A000">+                                SS7_DEBUG("Found Tx LPA on COT disable option\n");</span>
                        } else {
<span style="color: #A00000">-                                SS7_DEBUG("\tInvalid value for \"lpa_on_cot\" option\n");</span>
<span style="color: #00A000">+                                SS7_DEBUG("Invalid parm->value for lpa_on_cot option\n");</span>
                        }
                /**********************************************************************/
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t3")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t3 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t3 = %d\n", sng_ccSpan.t3);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t12")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t12 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t12 = %d\n", sng_ccSpan.t12);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t13")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t13 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t13 = %d\n", sng_ccSpan.t13);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t14")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t14 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t14 = %d\n", sng_ccSpan.t14);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t15")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t15 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t15 = %d\n", sng_ccSpan.t15);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t16")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t16 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t16 = %d\n", sng_ccSpan.t16);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t17")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t17 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t17 = %d\n", sng_ccSpan.t17);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.t35")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.t35 = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup t35 = %d\n",sng_ccSpan.t35);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } else if (!strcasecmp(parm->var, "isup.tval")) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        sng_ccSpan.tval = atoi(parm->val);</span>
<span style="color: #00A000">+                        SS7_DEBUG("Found isup tval = %d\n", sng_ccSpan.tval);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                } else {
<span style="color: #A00000">-                        SS7_ERROR("\tFound an invalid parameter \"%s\"!\n", parm->val);</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        SS7_ERROR("Found an invalid parameter %s!\n", parm->var);</span>
                        return FTDM_FAIL;
<span style="color: #A00000">-</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
                }
                /* move to the next parameter */
                parm = parm + 1;
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i = 0; i < num_parms; i++) */</span>
        /* check if the user filled in a nadi value by looking at flag */
        if (!flag_cld_nadi) {
                /* default the nadi value to national */
<span style="color: #A00000">-                sng_isup.cld_nadi = 0x03;</span>
<span style="color: #00A000">+                sng_ccSpan.cld_nadi = 0x03;</span>
        }
        if (!flag_clg_nadi) {
                /* default the nadi value to national */
<span style="color: #A00000">-                sng_isup.clg_nadi = 0x03;</span>
<span style="color: #00A000">+                sng_ccSpan.clg_nadi = 0x03;</span>
        }
<span style="color: #A00000">-        /* check if the user requested min_digits value */</span>
<span style="color: #A00000">-        if (sng_isup.min_digits == 0) {</span>
<span style="color: #A00000">-                /* default to 7 */</span>
<span style="color: #A00000">-                sng_isup.min_digits = 7;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #A00000">-                </span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /* trickle down the SPC to all sub entities */</span>
<span style="color: #A00000">-        linkSetId = g_ftdm_sngss7_data.cfg.mtpRoute[sng_isup.mtpRouteId].linkSetId;</span>
<span style="color: #00A000">+        /* add this span to our global listing */</span>
<span style="color: #00A000">+        ftmod_ss7_fill_in_ccSpan(&sng_ccSpan);</span>
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpLink[i].id != 0) {</span>
<span style="color: #A00000">-                if (g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.linkSetId == linkSetId) {</span>
<span style="color: #A00000">-                        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.spc = g_ftdm_sngss7_data.cfg.spc;</span>
<span style="color: #A00000">-                }</span>
<span style="color: #00A000">+        /* make sure the isup interface structure has something in it */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.isupIntf[sng_ccSpan.isupInf].id == 0) {</span>
<span style="color: #00A000">+                /* fill in the id, so that we know it exists */</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupIntf[sng_ccSpan.isupInf].id = sng_ccSpan.isupInf;</span>
<span style="color: #A00000">-                i++;</span>
<span style="color: #00A000">+                /* default the status to PAUSED */</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg.isupIntf[sng_ccSpan.isupInf], SNGSS7_PAUSED);</span>
        }
<span style="color: #A00000">-        ftmod_ss7_fill_in_isap(&sng_isap);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        sng_isup.isap = sng_isap.id;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        ftmod_ss7_fill_in_isup_interface(&sng_isup);</span>
<span style="color: #A00000">-</span>
        return FTDM_SUCCESS;
}
/******************************************************************************/
<span style="color: #A00000">-static int ftmod_ss7_fill_in_mtpLink(sng_mtp_link_t *mtpLink)</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_relay_channel(sng_relay_t *relay_channel)</span>
{
        int i;
<span style="color: #A00000">-        /* go through all the existing links and see if we find a match */</span>
<span style="color: #00A000">+        /* go through all the existing channels and see if we find a match */</span>
        i = 1;
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpLink[i].id != 0) {</span>
<span style="color: #A00000">-                if ((g_ftdm_sngss7_data.cfg.mtpLink[i].mtp1.span == mtpLink->mtp1.span) &&</span>
<span style="color: #A00000">-                        (g_ftdm_sngss7_data.cfg.mtpLink[i].mtp1.chan == mtpLink->mtp1.chan)) {</span>
<span style="color: #00A000">+        while (g_ftdm_sngss7_data.cfg.relay[i].id != 0) {</span>
<span style="color: #00A000">+                if ((g_ftdm_sngss7_data.cfg.relay[i].type == relay_channel->type) &&</span>
<span style="color: #00A000">+                        (g_ftdm_sngss7_data.cfg.relay[i].port == relay_channel->port) &&</span>
<span style="color: #00A000">+                        (g_ftdm_sngss7_data.cfg.relay[i].procId == relay_channel->procId) &&</span>
<span style="color: #00A000">+                        (!strcasecmp(g_ftdm_sngss7_data.cfg.relay[i].hostname, relay_channel->hostname))) {</span>
                        /* we have a match so break out of this loop */
                        break;
<span style="color: #800080; font-weight: bold">@@ -1355,179 +2030,273 @@ static int ftmod_ss7_fill_in_mtpLink(sng_mtp_link_t *mtpLink)</span>
                i++;
        }
<span style="color: #A00000">-        /* if the id value is 0 that means we didn't find the link */</span>
<span style="color: #A00000">-        if (g_ftdm_sngss7_data.cfg.mtpLink[i].id == 0) {</span>
<span style="color: #A00000">-                mtpLink->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found new mtpLink on span=%d, chan=%d, id = %d\n", </span>
<span style="color: #A00000">-                                        mtpLink->mtp1.span, </span>
<span style="color: #A00000">-                                        mtpLink->mtp1.chan, </span>
<span style="color: #A00000">-                                        mtpLink->id);</span>
<span style="color: #00A000">+                /* if the id value is 0 that means we didn't find the relay channel */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.relay[i].id == 0) {</span>
<span style="color: #00A000">+                relay_channel->id = i;</span>
<span style="color: #00A000">+                SS7_DEBUG("found new relay channel on type:%d, hostname:%s, port:%d, procId:%d, id = %d\n",</span>
<span style="color: #00A000">+                                        relay_channel->type,</span>
<span style="color: #00A000">+                                        relay_channel->hostname,</span>
<span style="color: #00A000">+                                        relay_channel->port,</span>
<span style="color: #00A000">+                                        relay_channel->procId, </span>
<span style="color: #00A000">+                                        relay_channel->id);</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_RY);</span>
        } else {
<span style="color: #A00000">-                mtpLink->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found existing mtpLink on span=%d, chan=%d, id = %d\n", </span>
<span style="color: #A00000">-                                        mtpLink->mtp1.span, </span>
<span style="color: #A00000">-                                        mtpLink->mtp1.chan, </span>
<span style="color: #A00000">-                                        mtpLink->id);</span>
<span style="color: #00A000">+                relay_channel->id = i;</span>
<span style="color: #00A000">+                SS7_DEBUG("found existing relay channel on type:%d, hostname:%s, port:%d, procId:%d, id = %d\n",</span>
<span style="color: #00A000">+                                        relay_channel->type,</span>
<span style="color: #00A000">+                                        relay_channel->hostname,</span>
<span style="color: #00A000">+                                        relay_channel->port,</span>
<span style="color: #00A000">+                                        relay_channel->procId, </span>
<span style="color: #00A000">+                                        relay_channel->id);</span>
        }
<span style="color: #A00000">-        /* fill in the information */</span>
<span style="color: #A00000">-        strncpy((char *)g_ftdm_sngss7_data.cfg.mtpLink[i].name, (char *)mtpLink->name, MAX_NAME_LEN-1);</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.relay[i].id                = relay_channel->id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.relay[i].type        = relay_channel->type;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.relay[i].port        = relay_channel->port;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.relay[i].procId        = relay_channel->procId;</span>
<span style="color: #00A000">+        strcpy(g_ftdm_sngss7_data.cfg.relay[i].hostname, relay_channel->hostname);</span>
<span style="color: #00A000">+        strcpy(g_ftdm_sngss7_data.cfg.relay[i].name, relay_channel->name);</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].id                                = mtpLink->id;</span>
<span style="color: #00A000">+        /* if this is THE listen channel grab the procId and use it */</span>
<span style="color: #00A000">+        if (relay_channel->type == LRY_CT_TCP_LISTEN) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.procId = relay_channel->procId;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp1.span                 = mtpLink->mtp1.span;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp1.chan                 = mtpLink->mtp1.chan;</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.linkType                = mtpLink->mtp2.linkType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.errorType        = mtpLink->mtp2.errorType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.lssuLength        = mtpLink->mtp2.lssuLength;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.mtp1Id                = mtpLink->id;</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp1_link(sng_mtp1_link_t *mtp1Link)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = mtp1Link->id;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.priority                = mtpLink->mtp3.priority;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.linkType                = mtpLink->mtp3.linkType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.switchType        = mtpLink->mtp3.switchType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.apc                        = mtpLink->mtp3.apc;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.spc                        = g_ftdm_sngss7_data.cfg.spc;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.ssf                        = mtpLink->mtp3.ssf;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.slc                        = mtpLink->mtp3.slc;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.linkSetId        = mtpLink->mtp3.linkSetId;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.mtp2Id                = mtpLink->id;</span>
<span style="color: #00A000">+        /* check if this id value has been used already */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtp1Link[i].id == 0) {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found new MTP1 Link: id=%d, name=%s\n", mtp1Link->id, mtp1Link->name);</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP1);</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found an existing MTP1 Link: id=%d, name=%s (old name=%s)\n", </span>
<span style="color: #00A000">+                                        mtp1Link->id, </span>
<span style="color: #00A000">+                                        mtp1Link->name,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtp1Link[i].name);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* copy over the values */</span>
<span style="color: #00A000">+        strcpy((char *)g_ftdm_sngss7_data.cfg.mtp1Link[i].name, (char *)mtp1Link->name);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp1Link[i].id                = mtp1Link->id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp1Link[i].span                = mtp1Link->span;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp1Link[i].chan                = mtp1Link->chan;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp2_link(sng_mtp2_link_t *mtp2Link)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = mtp2Link->id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check if this id value has been used already */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtp2Link[i].id == 0) {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found new MTP2 Link: id=%d, name=%s\n", mtp2Link->id, mtp2Link->name);</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP2);</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found an existing MTP2 Link: id=%d, name=%s (old name=%s)\n", </span>
<span style="color: #00A000">+                                        mtp2Link->id, </span>
<span style="color: #00A000">+                                        mtp2Link->name,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtp2Link[i].name);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* copy over the values */</span>
<span style="color: #00A000">+        strcpy((char *)g_ftdm_sngss7_data.cfg.mtp2Link[i].name, (char *)mtp2Link->name);</span>
<span style="color: #A00000">-        if ( mtpLink->mtp2.t1 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t1                = mtpLink->mtp2.t1;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].id                        = mtp2Link->id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].lssuLength        = mtp2Link->lssuLength;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].errorType        = mtp2Link->errorType;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].linkType                = mtp2Link->linkType;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].mtp1Id                = mtp2Link->mtp1Id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp2Link[i].mtp1ProcId        = mtp2Link->mtp1ProcId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t1 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t1                = mtp2Link->t1;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t1                = 500;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t1                = 500;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t2 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t2                = mtpLink->mtp2.t2;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t2 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t2                = mtp2Link->t2;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t2                = 250;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t2                = 250;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t3 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t3                = mtpLink->mtp2.t3;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t3 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t3                = mtp2Link->t3;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t3                = 20;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t3                = 20;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t4n != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t4n                = mtpLink->mtp2.t4n;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t4n != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t4n                = mtp2Link->t4n;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t4n                = 80;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t4n                = 80;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t4e != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t4e                = mtpLink->mtp2.t4e;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t4e != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t4e                = mtp2Link->t4e;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t4e                = 5;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t4e                = 5;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t5 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t5                = mtpLink->mtp2.t5;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t5 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t5                = mtp2Link->t5;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t5                = 1;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t5                = 1;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t6 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t6                = mtpLink->mtp2.t6;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t6 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t6                = mtp2Link->t6;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t6                = 60;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t6                = 60;</span>
        }
<span style="color: #A00000">-        if ( mtpLink->mtp2.t7 != 0 ) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t7                = mtpLink->mtp2.t7;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if ( mtp2Link->t7 != 0 ) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t7                = mtp2Link->t7;</span>
        }else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp2.t7                = 40;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp2Link[i].t7                = 40;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t1 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t1                = mtpLink->mtp3.t1;</span>
<span style="color: #A00000">-        } else { </span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t1                = 8;</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_mtp3_link(sng_mtp3_link_t *mtp3Link)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        int i = mtp3Link->id;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* check if this id value has been used already */</span>
<span style="color: #00A000">+        if (g_ftdm_sngss7_data.cfg.mtp3Link[i].id == 0) {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found new MTP3 Link: id=%d, name=%s\n", mtp3Link->id, mtp3Link->name);</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_MTP3);</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                SS7_DEBUG("Found an existing MTP3 Link: id=%d, name=%s (old name=%s)\n", </span>
<span style="color: #00A000">+                                        mtp3Link->id, </span>
<span style="color: #00A000">+                                        mtp3Link->name,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtp3Link[i].name);</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* copy over the values */</span>
<span style="color: #00A000">+        strcpy((char *)g_ftdm_sngss7_data.cfg.mtp3Link[i].name, (char *)mtp3Link->name);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].id                        = mtp3Link->id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].priority                = mtp3Link->priority;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].linkType                = mtp3Link->linkType;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].switchType        = mtp3Link->switchType;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].apc                        = mtp3Link->apc;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].spc                        = mtp3Link->spc;        /* unknown at this time */</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].ssf                        = mtp3Link->ssf;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].slc                        = mtp3Link->slc;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].linkSetId        = mtp3Link->linkSetId;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].mtp2Id                = mtp3Link->mtp2Id;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtp3Link[i].mtp2ProcId        = mtp3Link->mtp2ProcId;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        if (mtp3Link->t1 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t1                = mtp3Link->t1;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t1                = 8;</span>
<span style="color: #00A000">+        }</span>
<span style="color: #00A000">+        if (mtp3Link->t2 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t2                = mtp3Link->t2;</span>
<span style="color: #00A000">+        } else {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t2                = 14;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t2 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t2                = mtpLink->mtp3.t2;</span>
<span style="color: #00A000">+        if (mtp3Link->t3 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t3                = mtp3Link->t3;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t2                = 14;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t3                = 8;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t3 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t3                = mtpLink->mtp3.t3;</span>
<span style="color: #00A000">+        if (mtp3Link->t4 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t4                = mtp3Link->t4;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t3                = 8;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t4                = 8;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t4 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t4                = mtpLink->mtp3.t4;</span>
<span style="color: #00A000">+        if (mtp3Link->t5 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t5                = mtp3Link->t5;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t4                = 8;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t5                = 8;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t5 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t5                = mtpLink->mtp3.t5;</span>
<span style="color: #00A000">+        if (mtp3Link->t7 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t7                = mtp3Link->t7;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t5                = 8;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t7                = 15;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t7 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t7                = mtpLink->mtp3.t7;</span>
<span style="color: #00A000">+        if (mtp3Link->t12 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t12                = mtp3Link->t12;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t7                = 15;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t12                = 15;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t12 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t12                = mtpLink->mtp3.t12;</span>
<span style="color: #00A000">+        if (mtp3Link->t13 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t13                = mtp3Link->t13;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t12                = 15;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t13                = 15;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t13 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t13                = mtpLink->mtp3.t13;</span>
<span style="color: #00A000">+        if (mtp3Link->t14 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t14                = mtp3Link->t14;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t13                = 15;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t14                = 30;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t14 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t14                = mtpLink->mtp3.t14;</span>
<span style="color: #00A000">+        if (mtp3Link->t17 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t17                = mtp3Link->t17;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t14                = 30;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t17                = 15;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t17 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t17                = mtpLink->mtp3.t17;</span>
<span style="color: #00A000">+        if (mtp3Link->t22 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t22                = mtp3Link->t22;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t17                = 15;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t22                = 1800;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t22 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t22                = mtpLink->mtp3.t22;</span>
<span style="color: #00A000">+        if (mtp3Link->t23 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t23                = mtp3Link->t23;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t22                = 1800;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t23                = 1800;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t23 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t23                = mtpLink->mtp3.t23;</span>
<span style="color: #00A000">+        if (mtp3Link->t24 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t24                = mtp3Link->t24;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t23                = 1800;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t24                = 5;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t24 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t24                = mtpLink->mtp3.t24;</span>
<span style="color: #00A000">+        if (mtp3Link->t31 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t31                = mtp3Link->t31;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t24                = 5;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t31                = 50;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t31 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t31                = mtpLink->mtp3.t31;</span>
<span style="color: #00A000">+        if (mtp3Link->t32 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t32                = mtp3Link->t32;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t31                = 50;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t32                = 120;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t32 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t32                = mtpLink->mtp3.t32;</span>
<span style="color: #00A000">+        if (mtp3Link->t33 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t33                = mtp3Link->t33;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t32                = 120;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t33                = 3000;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t33 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t33                = mtpLink->mtp3.t33;</span>
<span style="color: #00A000">+        if (mtp3Link->t34 != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t34                = mtp3Link->t34;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t33                = 3000;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].t34                = 600;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.t34 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t34                = mtpLink->mtp3.t34;</span>
<span style="color: #00A000">+        if (mtp3Link->tbnd != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].tbnd                = mtp3Link->tbnd;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.t34                = 600;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].tbnd                = 30000;</span>
        }
<span style="color: #A00000">-        if (mtpLink->mtp3.tflc != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.tflc                = mtpLink->mtp3.tflc;</span>
<span style="color: #00A000">+        if (mtp3Link->tflc != 0) {</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].tflc                = mtp3Link->tflc;</span>
        } else {
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.mtpLink[i].mtp3.tflc                = 300;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.mtp3Link[i].tflc                = 300;</span>
        }
<span style="color: #A00000">-        return (mtpLink->id);</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
}
<span style="color: #A00000">-</span>
/******************************************************************************/
static int ftmod_ss7_fill_in_mtpLinkSet(sng_link_set_t *mtpLinkSet)
{
<span style="color: #800080; font-weight: bold">@@ -1537,9 +2306,6 @@ static int ftmod_ss7_fill_in_mtpLinkSet(sng_link_set_t *mtpLinkSet)</span>
        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].id                        = mtpLinkSet->id;
        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].apc                = mtpLinkSet->apc;
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].linkType        = mtpLinkSet->linkType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].switchType        = mtpLinkSet->switchType;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].ssf                = mtpLinkSet->ssf;</span>
        /* these values are filled in as we find routes and start allocating cmbLinkSetIds */
        g_ftdm_sngss7_data.cfg.mtpLinkSet[i].minActive        = mtpLinkSet->minActive;
<span style="color: #800080; font-weight: bold">@@ -1550,28 +2316,25 @@ static int ftmod_ss7_fill_in_mtpLinkSet(sng_link_set_t *mtpLinkSet)</span>
/******************************************************************************/
static int ftmod_ss7_fill_in_mtp3_route(sng_route_t *mtp3_route)
{
<span style="color: #A00000">-        int i;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /* go through all the existing routes and see if we find a match */</span>
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.mtpRoute[i].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.mtpRoute[i].name, mtp3_route->name)) {</span>
<span style="color: #A00000">-                        /* we have a match so break out of this loop */</span>
<span style="color: #A00000">-                        break;</span>
<span style="color: #A00000">-                }</span>
<span style="color: #A00000">-                /* move on to the next one */</span>
<span style="color: #A00000">-                i++;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+        int i = mtp3_route->id;</span>
<span style="color: #00A000">+        /* check if this id value has been used already */</span>
        if (g_ftdm_sngss7_data.cfg.mtpRoute[i].id == 0) {
<span style="color: #A00000">-                mtp3_route->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found new mtp3_route, id is = %d\n", mtp3_route->id);</span>
<span style="color: #00A000">+                SS7_DEBUG("Found new MTP3 Link: id=%d, name=%s\n", mtp3_route->id, mtp3_route->name);</span>
        } else {
<span style="color: #A00000">-                mtp3_route->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found existing mtp3_route, id is = %d\n", mtp3_route->id);</span>
<span style="color: #00A000">+                SS7_DEBUG("Found an existing MTP3 Link: id=%d, name=%s (old name=%s)\n", </span>
<span style="color: #00A000">+                                        mtp3_route->id, </span>
<span style="color: #00A000">+                                        mtp3_route->name,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.mtpRoute[i].name);</span>
        }
<span style="color: #A00000">-        strncpy((char *)g_ftdm_sngss7_data.cfg.mtpRoute[i].name, (char *)mtp3_route->name, MAX_NAME_LEN-1);</span>
<span style="color: #00A000">+        /* fill in the cmbLinkSet in the linkset structure */</span>
<span style="color: #00A000">+        int tmp = g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3_route->linkSetId].numLinks;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3_route->linkSetId].links[tmp] = mtp3_route->cmbLinkSetId;</span>
<span style="color: #00A000">+        g_ftdm_sngss7_data.cfg.mtpLinkSet[mtp3_route->linkSetId].numLinks++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        strcpy((char *)g_ftdm_sngss7_data.cfg.mtpRoute[i].name, (char *)mtp3_route->name);</span>
        g_ftdm_sngss7_data.cfg.mtpRoute[i].id                        = mtp3_route->id;
        g_ftdm_sngss7_data.cfg.mtpRoute[i].dpc                        = mtp3_route->dpc;
<span style="color: #800080; font-weight: bold">@@ -1662,11 +2425,9 @@ static int ftmod_ss7_fill_in_nsap(sng_route_t *mtp3_route)</span>
        if (g_ftdm_sngss7_data.cfg.nsap[i].id == 0) {
                g_ftdm_sngss7_data.cfg.nsap[i].id = i;
<span style="color: #A00000">-                 mtp3_route->nwId = i;</span>
                SS7_DEBUG("found new mtp3_isup interface, id is = %d\n", g_ftdm_sngss7_data.cfg.nsap[i].id);
        } else {
                g_ftdm_sngss7_data.cfg.nsap[i].id = i;
<span style="color: #A00000">-                 mtp3_route->nwId = i;</span>
                SS7_DEBUG("found existing mtp3_isup interface, id is = %d\n", g_ftdm_sngss7_data.cfg.nsap[i].id);
        }
        
<span style="color: #800080; font-weight: bold">@@ -1683,26 +2444,17 @@ static int ftmod_ss7_fill_in_nsap(sng_route_t *mtp3_route)</span>
/******************************************************************************/
static int ftmod_ss7_fill_in_isup_interface(sng_isup_inf_t *sng_isup)
{
<span style="color: #A00000">-        int i;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        /* go through all the existing interfaces and see if we find a match */</span>
<span style="color: #A00000">-        i = 1;</span>
<span style="color: #A00000">-        while (g_ftdm_sngss7_data.cfg.isupIntf[i].id != 0) {</span>
<span style="color: #A00000">-                if (!strcasecmp(g_ftdm_sngss7_data.cfg.isupIntf[i].name, sng_isup->name)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* we have a match so break out of this loop */</span>
<span style="color: #A00000">-                        break;</span>
<span style="color: #A00000">-                }</span>
<span style="color: #A00000">-                /* move on to the next one */</span>
<span style="color: #A00000">-                i++;</span>
<span style="color: #A00000">-        }</span>
<span style="color: #00A000">+        int i = sng_isup->id;</span>
<span style="color: #00A000">+        /* check if this id value has been used already */</span>
        if (g_ftdm_sngss7_data.cfg.isupIntf[i].id == 0) {
<span style="color: #A00000">-                sng_isup->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found new isup interface, id is = %d\n", sng_isup->id);</span>
<span style="color: #00A000">+                SS7_DEBUG("Found new ISUP Interface: id=%d, name=%s\n", sng_isup->id, sng_isup->name);</span>
<span style="color: #00A000">+                sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_ISUP);</span>
        } else {
<span style="color: #A00000">-                sng_isup->id = i;</span>
<span style="color: #A00000">-                SS7_DEBUG("found existing isup interface, id is = %d\n", sng_isup->id);</span>
<span style="color: #00A000">+                SS7_DEBUG("Found an existing ISUP Interface: id=%d, name=%s (old name=%s)\n", </span>
<span style="color: #00A000">+                                        sng_isup->id, </span>
<span style="color: #00A000">+                                        sng_isup->name,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupIntf[i].name);</span>
        }
        strncpy((char *)g_ftdm_sngss7_data.cfg.isupIntf[i].name, (char *)sng_isup->name, MAX_NAME_LEN-1);
<span style="color: #800080; font-weight: bold">@@ -1715,9 +2467,6 @@ static int ftmod_ss7_fill_in_isup_interface(sng_isup_inf_t *sng_isup)</span>
        g_ftdm_sngss7_data.cfg.isupIntf[i].switchType        = sng_isup->switchType;
        g_ftdm_sngss7_data.cfg.isupIntf[i].ssf                        = sng_isup->ssf;
        g_ftdm_sngss7_data.cfg.isupIntf[i].isap                        = sng_isup->isap;
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.isupIntf[i].cld_nadi                = sng_isup->cld_nadi;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.isupIntf[i].clg_nadi                = sng_isup->clg_nadi;</span>
<span style="color: #A00000">-        g_ftdm_sngss7_data.cfg.isupIntf[i].min_digits        = sng_isup->min_digits;</span>
        g_ftdm_sngss7_data.cfg.isupIntf[i].options                = sng_isup->options;
        if (sng_isup->t4 != 0) {
                g_ftdm_sngss7_data.cfg.isupIntf[i].t4                = sng_isup->t4;
<span style="color: #800080; font-weight: bold">@@ -1799,11 +2548,6 @@ static int ftmod_ss7_fill_in_isup_interface(sng_isup_inf_t *sng_isup)</span>
        } else {
                g_ftdm_sngss7_data.cfg.isupIntf[i].t32                = 30;
        }
<span style="color: #A00000">-        if (sng_isup->t35 != 0) {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.isupIntf[i].t35                = sng_isup->t35;</span>
<span style="color: #A00000">-        } else {</span>
<span style="color: #A00000">-                g_ftdm_sngss7_data.cfg.isupIntf[i].t35                = 170;</span>
<span style="color: #A00000">-        }</span>
        if (sng_isup->t37 != 0) {
                g_ftdm_sngss7_data.cfg.isupIntf[i].t37                = sng_isup->t37;
        } else {
<span style="color: #800080; font-weight: bold">@@ -1857,10 +2601,10 @@ static int ftmod_ss7_fill_in_isap(sng_isap_t *sng_isap)</span>
        if (g_ftdm_sngss7_data.cfg.isap[i].id == 0) {
                sng_isap->id = i;
<span style="color: #A00000">-                SS7_DEBUG("found new isup to cc interface, id is = %d\n", g_ftdm_sngss7_data.cfg.isap[i].id);</span>
<span style="color: #00A000">+                SS7_DEBUG("found new isup to cc interface, id is = %d\n", sng_isap->id);</span>
        } else {
                sng_isap->id = i;
<span style="color: #A00000">-                SS7_DEBUG("found existing isup to cc interface, id is = %d\n", g_ftdm_sngss7_data.cfg.isap[i].id);</span>
<span style="color: #00A000">+                SS7_DEBUG("found existing isup to cc interface, id is = %d\n", sng_isap->id);</span>
        }
        g_ftdm_sngss7_data.cfg.isap[i].id                         = sng_isap->id;
<span style="color: #800080; font-weight: bold">@@ -2013,226 +2757,213 @@ static int ftmod_ss7_fill_in_self_route(int spc, int linkType, int switchType, i</span>
}
/******************************************************************************/
<span style="color: #A00000">-static int ftmod_ss7_fill_in_circuits(sng_isupCkt_t *isupCkt)</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_ccSpan(sng_ccSpan_t *ccSpan)</span>
{
<span style="color: #A00000">-        sngss7_chan_data_t        *ss7_info = NULL;</span>
<span style="color: #A00000">-        ftdm_channel_t                *ftdmchan = NULL;</span>
        sng_timeslot_t                timeslot;
<span style="color: #A00000">-        int                                        count;</span>
<span style="color: #A00000">-        int                                        i;</span>
<span style="color: #00A000">+        sngss7_chan_data_t        *ss7_info = NULL;</span>
        int                                        x;
<span style="color: #00A000">+        int                                        count = 1;</span>
<span style="color: #A00000">-        count = 1;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-        while (isupCkt->ch_map[0] != '\0') {</span>
<span style="color: #00A000">+        while (ccSpan->ch_map[0] != '\0') {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #A00000">-                 /* pull out the next timeslot */</span>
<span style="color: #A00000">-                if (ftmod_ss7_next_timeslot(isupCkt->ch_map, &timeslot)) {</span>
<span style="color: #00A000">+                /* pull out the next timeslot */</span>
<span style="color: #00A000">+                if (ftmod_ss7_next_timeslot(ccSpan->ch_map, &timeslot)) {</span>
                        SS7_ERROR("Failed to parse the channel map!\n");
                        return FTDM_FAIL;
                }
<span style="color: #A00000">-                if ((timeslot.siglink) || (timeslot.gap)) {</span>
<span style="color: #A00000">-                        /* try to find the channel in the circuits structure*/</span>
<span style="color: #A00000">-                        x = 1;</span>
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #A00000">-                                if ((g_ftdm_sngss7_data.cfg.isupCkt[x].chan == count) &&</span>
<span style="color: #A00000">-                                        (g_ftdm_sngss7_data.cfg.isupCkt[x].span == isupCkt->span->channels[1]->physical_span_id)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        SS7_DEVEL_DEBUG("Circuit for span=%d, chan=%d is already exists...id=%d\n",</span>
<span style="color: #A00000">-                                                                isupCkt->span->channels[1]->physical_span_id,</span>
<span style="color: #A00000">-                                                                count,</span>
<span style="color: #A00000">-                                                                x);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        /* we have a match so this circuit already exists in the structure */</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                /* move to the next circuit */</span>
<span style="color: #A00000">-                                x++;</span>
<span style="color: #A00000">-                        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* check why we exited the while loop */</span>
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.isupCkt[x].id == 0) {</span>
<span style="color: #A00000">-                                SS7_DEVEL_DEBUG("Circuit for span=%d, chan=%d is new...id=%d\n",</span>
<span style="color: #A00000">-                                isupCkt->span->channels[1]->physical_span_id,</span>
<span style="color: #A00000">-                                count,</span>
<span style="color: #A00000">-                                x);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* prepare the global info sturcture */</span>
<span style="color: #A00000">-                                ss7_info = ftdm_calloc(1, sizeof(sngss7_chan_data_t));</span>
<span style="color: #A00000">-                                ss7_info->ftdmchan = NULL;</span>
<span style="color: #A00000">-                                ss7_info->circuit = &g_ftdm_sngss7_data.cfg.isupCkt[x];</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* circuit is new so fill in the needed information */</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].id                         = x;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].span                        = isupCkt->span->channels[1]->physical_span_id;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].chan                        = count;</span>
<span style="color: #A00000">-                                if (timeslot.siglink) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].type                = SIG;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].type                = HOLE;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                if (timeslot.channel) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].cic                = isupCkt->cicbase;</span>
<span style="color: #A00000">-                                        isupCkt->cicbase++;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].cic                = 0;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].infId                         = isupCkt->isupInf;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].typeCntrl         = isupCkt->typeCntrl;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].ssf                        = g_ftdm_sngss7_data.cfg.isupIntf[isupCkt->isupInf].ssf;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].obj                        = ss7_info;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].id == 0) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* increment the span channel count */</span>
<span style="color: #A00000">-                        count++;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                } else { /* if ((timeslot.siglink) || (timeslot.gap)) */</span>
<span style="color: #A00000">-                        /* find the ftdm the channel structure for this channel*/</span>
<span style="color: #A00000">-                        i = 1;</span>
<span style="color: #A00000">-                        while (isupCkt->span->channels[i] != NULL) {</span>
<span style="color: #A00000">-                                if (isupCkt->span->channels[i]->physical_chan_id == timeslot.channel) {</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                i++;</span>
<span style="color: #A00000">-                        } /* while (span->channels[i] != NULL) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        if (isupCkt->span->channels[i] == NULL) {</span>
<span style="color: #A00000">-                                /* we weren't able to find the channel in the ftdm channels */</span>
<span style="color: #A00000">-                                SS7_ERROR("Unable to find the requested channel %d in the FreeTDM channels!\n", timeslot.channel);</span>
<span style="color: #A00000">-                                return FTDM_FAIL;</span>
<span style="color: #A00000">-                        } else {</span>
<span style="color: #A00000">-                                ftdmchan = isupCkt->span->channels[i];</span>
<span style="color: #A00000">-                        }</span>
<span style="color: #00A000">+                /* find the spot in master array for this circuit */</span>
<span style="color: #00A000">+                x = (ccSpan->procId * 1000) + count;</span>
<span style="color: #A00000">-                        /* try to find a match for the physical span and chan */</span>
<span style="color: #A00000">-                        x = 1;</span>
<span style="color: #A00000">-                        while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #A00000">-                                if ((g_ftdm_sngss7_data.cfg.isupCkt[x].chan == ftdmchan->physical_chan_id) && </span>
<span style="color: #A00000">-                                        (g_ftdm_sngss7_data.cfg.isupCkt[x].span == ftdmchan->physical_span_id)) {</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                        /* we have a match so this circuit already exists in the structure */</span>
<span style="color: #A00000">-                                        break;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                /* move to the next circuit */</span>
<span style="color: #A00000">-                                x++;</span>
<span style="color: #A00000">-                        } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* check why we exited the while loop */</span>
<span style="color: #A00000">-                        if (g_ftdm_sngss7_data.cfg.isupCkt[x].id == 0) {</span>
<span style="color: #A00000">-                                SS7_DEVEL_DEBUG("Circuit for span=%d, chan=%d is new...id=%d\n",</span>
<span style="color: #A00000">-                                ftdmchan->physical_span_id,</span>
<span style="color: #A00000">-                                ftdmchan->physical_chan_id,</span>
<span style="color: #A00000">-                                x);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* prepare the global info sturcture */</span>
<span style="color: #A00000">-                                ss7_info = ftdm_calloc(1, sizeof(sngss7_chan_data_t));</span>
<span style="color: #A00000">-                                ss7_info->ftdmchan = ftdmchan;</span>
<span style="color: #A00000">-                                ss7_info->circuit = &g_ftdm_sngss7_data.cfg.isupCkt[x];</span>
<span style="color: #A00000">-                                ftdmchan->call_data = ss7_info;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* prepare the timer structures */</span>
<span style="color: #A00000">-                                ss7_info->t35.sched                        = ((sngss7_span_data_t *)isupCkt->span->signal_data)->sched;</span>
<span style="color: #A00000">-                                ss7_info->t35.counter                = 1;</span>
<span style="color: #A00000">-                                ss7_info->t35.beat                        = g_ftdm_sngss7_data.cfg.isupIntf[isupCkt->isupInf].t35*100; /* beat is in ms, t35 is in 100ms */</span>
<span style="color: #A00000">-                                ss7_info->t35.callback                = handle_isup_t35;</span>
<span style="color: #A00000">-                                ss7_info->t35.sngss7_info        = ss7_info;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* circuit is new so fill in the needed information */</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].id                = x;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].span                = ftdmchan->physical_span_id;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].chan                = ftdmchan->physical_chan_id;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].type                = VOICE;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].cic                = isupCkt->cicbase;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].infId                = isupCkt->isupInf;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].typeCntrl        = isupCkt->typeCntrl;</span>
<span style="color: #A00000">-                                if (isupCkt->t3 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t3        = 1200;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t3        = isupCkt->t3;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t12 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t12        = 300;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t12        = isupCkt->t12;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t13 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t13        = 3000;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t13        = isupCkt->t13;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t14 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t14        = 300;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t14        = isupCkt->t14;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t15 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t15        = 3000;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t15        = isupCkt->t15;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t16 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t16        = 300;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t16        = isupCkt->t16;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->t17 == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17        = 3000;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17        = isupCkt->t17;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                if (isupCkt->tval == 0) {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].tval        = 10;</span>
<span style="color: #A00000">-                                } else {</span>
<span style="color: #A00000">-                                        g_ftdm_sngss7_data.cfg.isupCkt[x].tval        = isupCkt->tval;</span>
<span style="color: #A00000">-                                }</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].obj                = ss7_info;</span>
<span style="color: #A00000">-                                g_ftdm_sngss7_data.cfg.isupCkt[x].ssf                = g_ftdm_sngss7_data.cfg.isupIntf[isupCkt->isupInf].ssf;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* increment the cicbase */</span>
<span style="color: #A00000">-                                isupCkt->cicbase++;</span>
<span style="color: #A00000">-                        } else { /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].id == 0) */</span>
<span style="color: #A00000">-                                SS7_DEBUG("Circuit for span=%d, chan=%d is new...id=%d\n",</span>
<span style="color: #A00000">-                                                                        ftdmchan->physical_span_id,</span>
<span style="color: #A00000">-                                                                        ftdmchan->physical_chan_id,</span>
<span style="color: #A00000">-                                                                        x);</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* for now make sure ss7_info is set to null */</span>
<span style="color: #A00000">-                                ss7_info = NULL;</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                                /* KONRAD FIX ME -> confirm that it is the same circuit */</span>
<span style="color: #A00000">-                        } /* if (g_ftdm_sngss7_data.cfg.isupCkt[x].id == 0) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                        /* increment the span channel count */</span>
<span style="color: #A00000">-                        count++;</span>
<span style="color: #A00000">-                } /* if ((timeslot.siglink) || (timeslot.gap)) */</span>
<span style="color: #A00000">-</span>
<span style="color: #A00000">-                if (ss7_info == NULL) {</span>
<span style="color: #A00000">-                        SS7_ERROR("KONRAD -> circuit was not configured !\n");</span>
<span style="color: #A00000">-                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                /* check if this circuit has already been filled in */</span>
<span style="color: #00A000">+                if (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+                        SS7_DEVEL_DEBUG("Filling in circuit that already exists...%d\n", x);</span>
                }
<span style="color: #A00000">-                if (ss7_info->ftdmchan == NULL) {</span>
<span style="color: #A00000">-                        SS7_INFO("Added span = %d, chan = %d, cic = %d, FTDM chan = %d, ISUP cirId = %d\n",</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].span,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].chan,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].cic,</span>
<span style="color: #A00000">-                                                0,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].id);</span>
<span style="color: #00A000">+                /* prepare the global info sturcture */</span>
<span style="color: #00A000">+                ss7_info = ftdm_calloc(1, sizeof(sngss7_chan_data_t));</span>
<span style="color: #00A000">+                ss7_info->ftdmchan = NULL;</span>
<span style="color: #00A000">+                ss7_info->circuit = &g_ftdm_sngss7_data.cfg.isupCkt[x];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].obj                        = ss7_info;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* fill in the rest of the global structure */</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].procId                 = ccSpan->procId;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].id                         = x;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].ccSpanId                = ccSpan->id;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].span                        = 0;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].chan                        = count;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (timeslot.siglink) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].type                = SIG;</span>
<span style="color: #00A000">+                } else if (timeslot.gap) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].type                = HOLE;</span>
                } else {
<span style="color: #A00000">-                        SS7_INFO("Added span = %d, chan = %d, cic = %d, FTDM chan = %d, ISUP cirId = %d\n",</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].span,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].chan,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].cic,</span>
<span style="color: #A00000">-                                                ss7_info->ftdmchan->chan_id,</span>
<span style="color: #A00000">-                                                g_ftdm_sngss7_data.cfg.isupCkt[x].id);</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].type                = VOICE;</span>
<span style="color: #00A000">+                        </span>
<span style="color: #00A000">+                        /* throw the flag to indicate that we need to start call control */</span>
<span style="color: #00A000">+                        sngss7_set_flag(&g_ftdm_sngss7_data.cfg, SNGSS7_CC);</span>
                }
<span style="color: #A00000">-        } /* while (ch_map[0] != '\0') */</span>
<span style="color: #00A000">+                if (timeslot.channel) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].cic                = ccSpan->cicbase;</span>
<span style="color: #00A000">+                        ccSpan->cicbase++;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].cic                = 0;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #A00000">-        return 0;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].infId                         = ccSpan->isupInf;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].typeCntrl         = ccSpan->typeCntrl;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].ssf                        = ccSpan->ssf;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].cld_nadi                = ccSpan->cld_nadi;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].clg_nadi                = ccSpan->clg_nadi;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].options                = ccSpan->options;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].switchType        = ccSpan->switchType;</span>
<span style="color: #00A000">+                g_ftdm_sngss7_data.cfg.isupCkt[x].min_digits        = ccSpan->min_digits;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                if (ccSpan->t3 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t3                        = 1200;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t3                        = ccSpan->t3;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t12 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t12                = 300;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t12                = ccSpan->t12;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t13 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t13                = 3000;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t13                = ccSpan->t13;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t14 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t14                = 300;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t14                = ccSpan->t14;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t15 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t15                = 3000;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t15                = ccSpan->t15;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t16 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t16                = 300;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t16                = ccSpan->t16;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t17 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17                = 3000;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17                = ccSpan->t17;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->t35 == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17                = 170;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].t17                = ccSpan->t35;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+                if (ccSpan->tval == 0) {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].tval                = 10;</span>
<span style="color: #00A000">+                } else {</span>
<span style="color: #00A000">+                        g_ftdm_sngss7_data.cfg.isupCkt[x].tval                = ccSpan->tval;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                SS7_INFO("Added procId=%d, spanId = %d, chan = %d, cic = %d, ISUP cirId = %d\n",</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupCkt[x].procId,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupCkt[x].ccSpanId,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupCkt[x].chan,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupCkt[x].cic,</span>
<span style="color: #00A000">+                                        g_ftdm_sngss7_data.cfg.isupCkt[x].id);</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* increment the span channel count */</span>
<span style="color: #00A000">+                count++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* while (ccSpan->ch_map[0] != '\0') */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
<span style="color: #00A000">+}</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+/******************************************************************************/</span>
<span style="color: #00A000">+static int ftmod_ss7_fill_in_circuits(sng_span_t *sngSpan)</span>
<span style="color: #00A000">+{</span>
<span style="color: #00A000">+        ftdm_channel_t                *ftdmchan = NULL;</span>
<span style="color: #00A000">+        ftdm_span_t                        *ftdmspan = sngSpan->span;</span>
<span style="color: #00A000">+        sng_isup_ckt_t                *isupCkt = NULL;</span>
<span style="color: #00A000">+        sngss7_chan_data_t        *ss7_info = NULL;</span>
<span style="color: #00A000">+        int                                        flag;</span>
<span style="color: #00A000">+        int                                        i;</span>
<span style="color: #00A000">+        int                                        x;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /* go through all the channels on ftdm span */</span>
<span style="color: #00A000">+        for (i = 1; i < (ftdmspan->chan_count+1); i++) {</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+                </span>
<span style="color: #00A000">+                /* extract the ftdmchan pointer */</span>
<span style="color: #00A000">+                ftdmchan = ftdmspan->channels[i];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* find the equivalent channel in the global structure */</span>
<span style="color: #00A000">+                x = (g_ftdm_sngss7_data.cfg.procId * 1000) + 1;</span>
<span style="color: #00A000">+                flag = 0;</span>
<span style="color: #00A000">+                while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) {</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                        /* pull out the circuit to make it easier to work with */</span>
<span style="color: #00A000">+                        isupCkt = &g_ftdm_sngss7_data.cfg.isupCkt[x];</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* if the ccSpanId's match fill in the span value...this is for sigs</span>
<span style="color: #00A000">+                         * because they will never have a channel that matches since they </span>
<span style="color: #00A000">+                         * have a ftdmchan at this time */</span>
<span style="color: #00A000">+                        if (sngSpan->ccSpanId == isupCkt->ccSpanId) {</span>
<span style="color: #00A000">+                                isupCkt->span = ftdmchan->physical_span_id;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* check if the ccSpanId matches and the physical channel # match */</span>
<span style="color: #00A000">+                        if ((sngSpan->ccSpanId == isupCkt->ccSpanId) &&</span>
<span style="color: #00A000">+                                (ftdmchan->physical_chan_id == isupCkt->chan)) {</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                                /* we've found the channel in the ckt structure...raise the flag */</span>
<span style="color: #00A000">+                                flag = 1;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                                /* now get out of the loop */</span>
<span style="color: #00A000">+                                break;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* move to the next ckt */</span>
<span style="color: #00A000">+                        x++;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                        /* check if we are outside of the range of possible indexes */</span>
<span style="color: #00A000">+                        if (x == ((g_ftdm_sngss7_data.cfg.procId + 1) * 1000)) {</span>
<span style="color: #00A000">+                                break;</span>
<span style="color: #00A000">+                        }</span>
<span style="color: #00A000">+                /**********************************************************************/</span>
<span style="color: #00A000">+                } /* while (g_ftdm_sngss7_data.cfg.isupCkt[x].id != 0) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* check we found the ckt or not */</span>
<span style="color: #00A000">+                if (!flag) {</span>
<span style="color: #00A000">+                        SS7_ERROR_CHAN(ftdmchan, "Failed to find this channel in the global ckts!%s\n","");</span>
<span style="color: #00A000">+                        return FTDM_FAIL;</span>
<span style="color: #00A000">+                }</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* fill in the rest of the global sngss7_chan_data_t structure */</span>
<span style="color: #00A000">+                ss7_info = (sngss7_chan_data_t *)isupCkt->obj;</span>
<span style="color: #00A000">+                ss7_info->ftdmchan = ftdmchan;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* attach the sngss7_chan_data_t to the freetdm channel structure */</span>
<span style="color: #00A000">+                ftdmchan->call_data = ss7_info;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+                /* prepare the timer structures */</span>
<span style="color: #00A000">+                ss7_info->t35.sched                        = ((sngss7_span_data_t *)(ftdmspan->signal_data))->sched;</span>
<span style="color: #00A000">+                ss7_info->t35.counter                = 1;</span>
<span style="color: #00A000">+                ss7_info->t35.beat                        = (isupCkt->t35) * 100; /* beat is in ms, t35 is in 100ms */</span>
<span style="color: #00A000">+                ss7_info->t35.callback                = handle_isup_t35;</span>
<span style="color: #00A000">+                ss7_info->t35.sngss7_info        = ss7_info;</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        /**************************************************************************/</span>
<span style="color: #00A000">+        } /* for (i == 1; i < ftdmspan->chan_count; i++) */</span>
<span style="color: #00A000">+</span>
<span style="color: #00A000">+        return FTDM_SUCCESS;</span>
}
/******************************************************************************/
</pre></div>
========================================================================<pre>
Summary of changes:
libs/freetdm/Makefile.am | 3 +-
libs/freetdm/configure.ac | 2 +-
libs/freetdm/mod_freetdm/mod_freetdm.c | 62 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c | 545 +++--
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_cli.c | 381 +++-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_cntrl.c | 374 +++-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_handle.c | 94 +-
.../ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_in.c | 82 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_logger.c | 121 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.c | 269 ++-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_main.h | 326 ++-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_out.c | 17 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c | 318 +++
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_sta.c | 106 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_support.c | 267 ++-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_timers.c | 2 +-
.../ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c | 2733 +++++++++++++-------
17 files changed, 4052 insertions(+), 1650 deletions(-)
create mode 100644 libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_relay.c
</pre>
<p>this email was generated because of /git/your-repo.git/hooks/post-receive by the file /git-core/contrib/hooks/post-receive-email<br />
For more info, see <a href="http://blog.chomperstomp.com/?p=630">http://blog.chomperstomp.com/?p=630</a>
-- <br />
FreeSWITCH Source</p>