Commit adb9da80 authored by Lionel Gauthier's avatar Lionel Gauthier

S1AP UE context release

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6317 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 569ab7de
...@@ -105,8 +105,8 @@ int s1ap_ue_context_release_complete(instance_t instance, ...@@ -105,8 +105,8 @@ int s1ap_ue_context_release_complete(instance_t instance,
length, ue_context_p->stream); length, ue_context_p->stream);
s1ap_eNB_itti_send_sctp_close_association(s1ap_eNB_instance_p->instance, //LG s1ap_eNB_itti_send_sctp_close_association(s1ap_eNB_instance_p->instance,
ue_context_p->mme_ref->assoc_id); // ue_context_p->mme_ref->assoc_id);
......
...@@ -202,9 +202,23 @@ int s1ap_eNB_handle_nas_first_req( ...@@ -202,9 +202,23 @@ int s1ap_eNB_handle_nas_first_req(
/* Update the current S1AP UE state */ /* Update the current S1AP UE state */
ue_desc_p->ue_state = S1AP_UE_WAITING_CSR; ue_desc_p->ue_state = S1AP_UE_WAITING_CSR;
/* Assign a stream for this UE */ /* Assign a stream for this UE :
mme_desc_p->nextstream %= mme_desc_p->out_streams; * From 3GPP 36.412 7)Transport layers:
ue_desc_p->stream = ++mme_desc_p->nextstream; * 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 */ /* Send encoded message over sctp */
s1ap_eNB_itti_send_sctp_data_req(instance_p->instance, mme_desc_p->assoc_id, s1ap_eNB_itti_send_sctp_data_req(instance_p->instance, mme_desc_p->assoc_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment