aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/sgsn_main.c
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2016-02-15 20:50:04 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:11 +0100
commit3cc0836b1a6dcd2806a4b2c95df5d18dd93677a4 (patch)
tree0cc651412fd4bdcc09e0390bdb71828e7af9070c /openbsc/src/gprs/sgsn_main.c
parent8cd32937da7bb2b4c0e0d37f24d6e993e7362e65 (diff)
gprs/sgsn: Use RAB assignment response cb in PDP context activation
Diffstat (limited to 'openbsc/src/gprs/sgsn_main.c')
-rw-r--r--openbsc/src/gprs/sgsn_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbsc/src/gprs/sgsn_main.c b/openbsc/src/gprs/sgsn_main.c
index 9c42bb881..3c0145ea9 100644
--- a/openbsc/src/gprs/sgsn_main.c
+++ b/openbsc/src/gprs/sgsn_main.c
@@ -305,6 +305,8 @@ static const struct log_info gprs_log_info = {
int asn_debug;
+int sgsn_ranap_rab_ass_resp(struct ue_conn_ctx *ctx, uint8_t rab_id, RANAP_RAB_SetupOrModifiedItemIEs_t *setup_ies);
+
int main(int argc, char **argv)
{
struct ctrl_handle *ctrl;
@@ -420,7 +422,7 @@ int main(int argc, char **argv)
}
asn_debug = 0;
- iu_init(tall_bsc_ctx, "127.0.0.2", 14001, NULL, gsm0408_gprs_rcvmsg_iu);
+ iu_init(tall_bsc_ctx, "127.0.0.2", 14001, NULL, gsm0408_gprs_rcvmsg_iu, sgsn_ranap_rab_ass_resp);
if (daemonize) {
rc = osmo_daemonize();