aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-04 11:48:49 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:06:47 +0100
commit4582586e248c35324c6c6fa0f3546be1dd70a599 (patch)
treec243429c7a9e73ac48d93e328a39f1d7adce6e39 /openbsc/src/bsc
parent7225fd18e07d28f3df2816d571f7368f3fe6fd7c (diff)
bsc: Add a method that will queue the message on a MSC connection.
Diffstat (limited to 'openbsc/src/bsc')
-rw-r--r--openbsc/src/bsc/osmo_bsc_sccp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/openbsc/src/bsc/osmo_bsc_sccp.c b/openbsc/src/bsc/osmo_bsc_sccp.c
index 8df3c208b..5ffbde0cb 100644
--- a/openbsc/src/bsc/osmo_bsc_sccp.c
+++ b/openbsc/src/bsc/osmo_bsc_sccp.c
@@ -68,6 +68,13 @@ static int msc_sccp_read(struct msgb *msgb, unsigned int length, void *data)
return 0;
}
+int bsc_queue_for_msc(struct gsm_subscriber_connection *conn, struct msgb *msg)
+{
+ LOGP(DMSC, LOGL_ERROR, "Sending SCCP messages is not yet implemented.\n");
+ msgb_free(msg);
+ return 0;
+}
+
int osmo_bsc_sccp_init(struct gsm_network *gsmnet)
{
sccp_set_log_area(DSCCP);