From 58f2cf6494433f7a1f1a5ef305e8eae9fbdecaab Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 4 Nov 2010 12:24:05 +0100 Subject: [PATCH] bsc: Implement the DTAP callback and forward the data to the MSC --- openbsc/src/bsc/osmo_bsc_api.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/openbsc/src/bsc/osmo_bsc_api.c b/openbsc/src/bsc/osmo_bsc_api.c index 71babdf7c..c51e9282f 100644 --- a/openbsc/src/bsc/osmo_bsc_api.c +++ b/openbsc/src/bsc/osmo_bsc_api.c @@ -64,7 +64,16 @@ static int bsc_compl_l3(struct gsm_subscriber_connection *conn, struct msgb *msg static void bsc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg) { + struct msgb *resp; return_when_not_connected(conn); + + resp = gsm0808_create_dtap(msg, link_id); + if (!resp) { + LOGP(DMSC, LOGL_ERROR, "Failed to allocate response.\n"); + return; + } + + bsc_queue_for_msc(conn, resp); } static void bsc_assign_compl(struct gsm_subscriber_connection *conn, uint8_t rr_cause,