aboutsummaryrefslogtreecommitdiffstats
path: root/src/bsc_sccp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bsc_sccp.c')
-rw-r--r--src/bsc_sccp.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/bsc_sccp.c b/src/bsc_sccp.c
index f0bd600..b8276d2 100644
--- a/src/bsc_sccp.c
+++ b/src/bsc_sccp.c
@@ -1,7 +1,7 @@
/* routines to track connections */
/*
- * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
- * (C) 2010 by On-Waves
+ * (C) 2010-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
+ * (C) 2010-2011 by On-Waves
* All Rights Reserved
*
* This program is free software: you can redistribute it and/or modify
@@ -23,12 +23,13 @@
#include "bsc_data.h"
#include <cellmgr_debug.h>
+#include <msc_connection.h>
#include <osmocore/talloc.h>
#include <string.h>
-struct active_sccp_con *find_con_by_dest_ref(struct bsc_msc_forward *fw, struct sccp_source_reference *ref)
+struct active_sccp_con *find_con_by_dest_ref(struct msc_connection *fw, struct sccp_source_reference *ref)
{
struct active_sccp_con *con;
@@ -47,7 +48,7 @@ struct active_sccp_con *find_con_by_dest_ref(struct bsc_msc_forward *fw, struct
}
-struct active_sccp_con *find_con_by_src_ref(struct bsc_msc_forward *fw, struct sccp_source_reference *src_ref)
+struct active_sccp_con *find_con_by_src_ref(struct msc_connection *fw, struct sccp_source_reference *src_ref)
{
struct active_sccp_con *con;
@@ -63,7 +64,7 @@ struct active_sccp_con *find_con_by_src_ref(struct bsc_msc_forward *fw, struct s
return NULL;
}
-struct active_sccp_con *find_con_by_src_dest_ref(struct bsc_msc_forward *fw,
+struct active_sccp_con *find_con_by_src_dest_ref(struct msc_connection *fw,
struct sccp_source_reference *src_ref,
struct sccp_source_reference *dst_ref)
{
@@ -79,7 +80,7 @@ struct active_sccp_con *find_con_by_src_dest_ref(struct bsc_msc_forward *fw,
return NULL;
}
-unsigned int sls_for_src_ref(struct bsc_msc_forward *fw, struct sccp_source_reference *ref)
+unsigned int sls_for_src_ref(struct msc_connection *fw, struct sccp_source_reference *ref)
{
struct active_sccp_con *con;