aboutsummaryrefslogtreecommitdiffstats
path: root/include/bsc_sccp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bsc_sccp.h')
-rw-r--r--include/bsc_sccp.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/bsc_sccp.h b/include/bsc_sccp.h
index 8811a2b..833257d 100644
--- a/include/bsc_sccp.h
+++ b/include/bsc_sccp.h
@@ -30,6 +30,8 @@
#include <osmocom/sccp/sccp.h>
+struct bsc_msc_forward;
+
/*
* One SCCP connection.
* Use for connection tracking and fixups...
@@ -61,10 +63,10 @@ struct active_sccp_con {
};
void free_con(struct active_sccp_con *con);
-struct active_sccp_con *find_con_by_dest_ref(struct sccp_source_reference *ref);
-struct active_sccp_con *find_con_by_src_ref(struct sccp_source_reference *src_ref);
-struct active_sccp_con *find_con_by_src_dest_ref(struct sccp_source_reference *src_ref,
+struct active_sccp_con *find_con_by_dest_ref(struct bsc_msc_forward *, struct sccp_source_reference *ref);
+struct active_sccp_con *find_con_by_src_ref(struct bsc_msc_forward *,struct sccp_source_reference *src_ref);
+struct active_sccp_con *find_con_by_src_dest_ref(struct bsc_msc_forward *, struct sccp_source_reference *src_ref,
struct sccp_source_reference *dst_ref);
-unsigned int sls_for_src_ref(struct sccp_source_reference *ref);
+unsigned int sls_for_src_ref(struct bsc_msc_forward *, struct sccp_source_reference *ref);
#endif