From adb9da804e55d606e7666f395816652c1cfc6566 Mon Sep 17 00:00:00 2001
From: Lionel Gauthier <lionel.gauthier@eurecom.fr>
Date: Tue, 23 Dec 2014 14:38:44 +0000
Subject: [PATCH] S1AP UE context release

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6317 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
 .../s1ap_eNB_context_management_procedures.c  |  4 ++--
 openair-cn/S1AP/s1ap_eNB_nas_procedures.c     | 20 ++++++++++++++++---
 2 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/openair-cn/S1AP/s1ap_eNB_context_management_procedures.c b/openair-cn/S1AP/s1ap_eNB_context_management_procedures.c
index 9362417aa20..bdf6d9b8be1 100755
--- a/openair-cn/S1AP/s1ap_eNB_context_management_procedures.c
+++ b/openair-cn/S1AP/s1ap_eNB_context_management_procedures.c
@@ -105,8 +105,8 @@ int s1ap_ue_context_release_complete(instance_t instance,
                                      length, ue_context_p->stream);
 
 
-    s1ap_eNB_itti_send_sctp_close_association(s1ap_eNB_instance_p->instance,
-                                     ue_context_p->mme_ref->assoc_id);
+    //LG s1ap_eNB_itti_send_sctp_close_association(s1ap_eNB_instance_p->instance,
+    //                                 ue_context_p->mme_ref->assoc_id);
 
 
 
diff --git a/openair-cn/S1AP/s1ap_eNB_nas_procedures.c b/openair-cn/S1AP/s1ap_eNB_nas_procedures.c
index bd4f67ccff1..8e7f8d3dc1a 100644
--- a/openair-cn/S1AP/s1ap_eNB_nas_procedures.c
+++ b/openair-cn/S1AP/s1ap_eNB_nas_procedures.c
@@ -202,9 +202,23 @@ int s1ap_eNB_handle_nas_first_req(
     /* Update the current S1AP UE state */
     ue_desc_p->ue_state = S1AP_UE_WAITING_CSR;
 
-    /* Assign a stream for this UE */
-    mme_desc_p->nextstream %= mme_desc_p->out_streams;
-    ue_desc_p->stream = ++mme_desc_p->nextstream;
+    /* Assign a stream for this UE :
+     * From 3GPP 36.412 7)Transport layers:
+     *  Within the SCTP association established between one MME and eNB pair:
+     *  - a single pair of stream identifiers shall be reserved for the sole use
+     *      of S1AP elementary procedures that utilize non UE-associated signalling.
+     *  - At least one pair of stream identifiers shall be reserved for the sole use
+     *      of S1AP elementary procedures that utilize UE-associated signallings.
+     *      However a few pairs (i.e. more than one) should be reserved.
+     *  - A single UE-associated signalling shall use one SCTP stream and
+     *      the stream should not be changed during the communication of the
+     *      UE-associated signalling.
+     */
+    mme_desc_p->nextstream = (mme_desc_p->nextstream + 1) % mme_desc_p->out_streams;
+    if ((mme_desc_p->nextstream == 0) && (mme_desc_p->out_streams > 1)) {
+        mme_desc_p->nextstream += 1;
+    }
+    ue_desc_p->stream = mme_desc_p->nextstream;
 
     /* Send encoded message over sctp */
     s1ap_eNB_itti_send_sctp_data_req(instance_p->instance, mme_desc_p->assoc_id,
-- 
GitLab