aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/iu.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-04-25 15:39:19 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-04-25 19:24:30 +0200
commit687270de3ab5f993c17d8447ace4d8d569145ee3 (patch)
tree6fb66521a8fe15dce3e8adfb88928f91b3dad71b /openbsc/include/openbsc/iu.h
parent96f88fda064476ac5ebe0ad4271c29d9c44c567b (diff)
RAB parameters: apply use_x213_nsap parameter addition
Add use_x213_nsap parameter to iu_rab_act_ps(), pass the new parameter from two callers as 1 such that there is no functional change.
Diffstat (limited to 'openbsc/include/openbsc/iu.h')
-rw-r--r--openbsc/include/openbsc/iu.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/iu.h b/openbsc/include/openbsc/iu.h
index 3a7c9f9dd..fc1a89130 100644
--- a/openbsc/include/openbsc/iu.h
+++ b/openbsc/include/openbsc/iu.h
@@ -1,5 +1,7 @@
#pragma once
+#include <stdbool.h>
+
struct sgsn_pdp_ctx;
struct msgb;
struct gprs_ra_id;
@@ -46,7 +48,7 @@ int iu_page_cs(const char *imsi, const uint32_t *tmsi, uint16_t lac);
int iu_page_ps(const char *imsi, const uint32_t *ptmsi, uint16_t lac, uint8_t rac);
int iu_rab_act_cs(struct ue_conn_ctx *ue_ctx, uint32_t rtp_ip, uint16_t rtp_port);
-int iu_rab_act_ps(uint8_t rab_id, struct sgsn_pdp_ctx *pdp);
+int iu_rab_act_ps(uint8_t rab_id, struct sgsn_pdp_ctx *pdp, bool use_x213_nsap);
int iu_rab_deact(struct ue_conn_ctx *ue_ctx, uint8_t rab_id);
int iu_tx_sec_mode_cmd(struct ue_conn_ctx *uectx, struct gsm_auth_tuple *tp,
int send_ck, int new_key);