aboutsummaryrefslogtreecommitdiffstats
path: root/src/bsc_sccp.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-02-16 16:12:07 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-02-17 19:34:27 +0100
commita7bc3aafdc79c04e038eab741ed8f428c13751c0 (patch)
tree1d46afd8da0f94685bf1a089590634229e17201e /src/bsc_sccp.c
parent2cdb73cf4a0bb9e7a47cdb6eba4601d00e4eb0d2 (diff)
ss7: Create a SS7 application that is responsible for the routing
Diffstat (limited to 'src/bsc_sccp.c')
-rw-r--r--src/bsc_sccp.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/bsc_sccp.c b/src/bsc_sccp.c
index b8276d2..d2b5416 100644
--- a/src/bsc_sccp.c
+++ b/src/bsc_sccp.c
@@ -23,13 +23,14 @@
#include "bsc_data.h"
#include <cellmgr_debug.h>
-#include <msc_connection.h>
+#include <ss7_application.h>
+#include <ss7_application.h>
#include <osmocore/talloc.h>
#include <string.h>
-struct active_sccp_con *find_con_by_dest_ref(struct msc_connection *fw, struct sccp_source_reference *ref)
+struct active_sccp_con *find_con_by_dest_ref(struct ss7_application *fw, struct sccp_source_reference *ref)
{
struct active_sccp_con *con;
@@ -48,7 +49,7 @@ struct active_sccp_con *find_con_by_dest_ref(struct msc_connection *fw, struct s
}
-struct active_sccp_con *find_con_by_src_ref(struct msc_connection *fw, struct sccp_source_reference *src_ref)
+struct active_sccp_con *find_con_by_src_ref(struct ss7_application *fw, struct sccp_source_reference *src_ref)
{
struct active_sccp_con *con;
@@ -64,7 +65,7 @@ struct active_sccp_con *find_con_by_src_ref(struct msc_connection *fw, struct sc
return NULL;
}
-struct active_sccp_con *find_con_by_src_dest_ref(struct msc_connection *fw,
+struct active_sccp_con *find_con_by_src_dest_ref(struct ss7_application *fw,
struct sccp_source_reference *src_ref,
struct sccp_source_reference *dst_ref)
{
@@ -80,7 +81,7 @@ struct active_sccp_con *find_con_by_src_dest_ref(struct msc_connection *fw,
return NULL;
}
-unsigned int sls_for_src_ref(struct msc_connection *fw, struct sccp_source_reference *ref)
+unsigned int sls_for_src_ref(struct ss7_application *fw, struct sccp_source_reference *ref)
{
struct active_sccp_con *con;