aboutsummaryrefslogtreecommitdiffstats
path: root/src/iu_client.c
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-10-03 20:45:52 +0200
committerAlexander Couzens <lynxis@fe80.eu>2019-10-08 13:02:11 +0200
commit9fb8cac6dc490ab7697858c0d549a2b87e19534a (patch)
treeeeacfa98a79b76fe2bf5d513aa5fa4688c08f65b /src/iu_client.c
parenta6eb09d6dbf4af30cd2ecce6d44824b1c7fde831 (diff)
iu_client: ranap_iu_tx_release() change default cause code to Success
The cause code no remaining rab should be only used when closing the Iu connection on this specific reason. Change default to NAS Success Release which is a usual release. Change-Id: Icf3f06b0de7dcda9f967ae29863054ef813c75e5
Diffstat (limited to 'src/iu_client.c')
-rw-r--r--src/iu_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/iu_client.c b/src/iu_client.c
index f4a9cd3..4b0acb0 100644
--- a/src/iu_client.c
+++ b/src/iu_client.c
@@ -468,15 +468,15 @@ int ranap_iu_tx(struct msgb *msg_nas, uint8_t sapi)
}
/* Send Iu Release for the given UE connection.
- * If cause is NULL, the standard "No remaining RAB" cause is sent, otherwise
+ * If cause is NULL, Normal Release cause is sent, otherwise
* the provided cause. */
int ranap_iu_tx_release(struct ranap_ue_conn_ctx *ctx, const struct RANAP_Cause *cause)
{
struct msgb *msg;
struct osmo_scu_prim *prim;
static const struct RANAP_Cause default_cause = {
- .present = RANAP_Cause_PR_radioNetwork,
- .choice.radioNetwork = RANAP_CauseRadioNetwork_no_remaining_rab,
+ .present = RANAP_Cause_PR_nAS,
+ .choice.radioNetwork = RANAP_CauseNAS_normal_release,
};
if (!cause)