Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
15428278
Commit
15428278
authored
Mar 10, 2020
by
matzakos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENDC path switch S1-U: Minor additions
parent
4222d356
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
openair2/RRC/LTE/rrc_eNB_S1AP.c
openair2/RRC/LTE/rrc_eNB_S1AP.c
+2
-0
openair3/S1AP/s1ap_eNB_handlers.c
openair3/S1AP/s1ap_eNB_handlers.c
+18
-0
openair3/S1AP/s1ap_eNB_nas_procedures.c
openair3/S1AP/s1ap_eNB_nas_procedures.c
+0
-1
No files found.
openair2/RRC/LTE/rrc_eNB_S1AP.c
View file @
15428278
...
...
@@ -2312,6 +2312,7 @@ int rrc_eNB_send_E_RAB_Modification_Indication(const protocol_ctxt_t *const ctxt
for
(
e_rab
=
0
;
e_rab
<
ue_context_pP
->
ue_context
.
setup_e_rabs
;
e_rab
++
)
{
//Add E-RAB in the list of E-RABs to be modified
if
(
ue_context_pP
->
ue_context
.
e_rab
[
e_rab
].
status
==
E_RAB_STATUS_TOMODIFY
)
{
S1AP_E_RAB_MODIFICATION_IND
(
msg_p
).
e_rabs_tobemodified
[
e_rab_modify_index
].
e_rab_id
=
ue_context_pP
->
ue_context
.
e_rab
[
e_rab
].
param
.
e_rab_id
;
memcpy
(
S1AP_E_RAB_MODIFICATION_IND
(
msg_p
).
e_rabs_tobemodified
[
e_rab_modify_index
].
eNB_addr
.
buffer
,
ue_context_pP
->
ue_context
.
gnb_gtp_endc_addrs
[
e_rab
].
buffer
,
ue_context_pP
->
ue_context
.
gnb_gtp_endc_addrs
[
e_rab
].
length
);
...
...
@@ -2321,6 +2322,7 @@ int rrc_eNB_send_E_RAB_Modification_Indication(const protocol_ctxt_t *const ctxt
}
//Add E-RAB in the list of E-RABs NOT to be modified
else
{
S1AP_E_RAB_MODIFICATION_IND
(
msg_p
).
e_rabs_nottobemodified
[
e_rab_notmodify_index
].
e_rab_id
=
ue_context_pP
->
ue_context
.
e_rab
[
e_rab
].
param
.
e_rab_id
;
memcpy
(
S1AP_E_RAB_MODIFICATION_IND
(
msg_p
).
e_rabs_nottobemodified
[
e_rab_notmodify_index
].
eNB_addr
.
buffer
,
ue_context_pP
->
ue_context
.
gnb_gtp_endc_addrs
[
e_rab
].
buffer
,
ue_context_pP
->
ue_context
.
gnb_gtp_endc_addrs
[
e_rab
].
length
);
...
...
openair3/S1AP/s1ap_eNB_handlers.c
View file @
15428278
...
...
@@ -104,6 +104,11 @@ int s1ap_eNB_handle_s1_path_switch_request_failure(uint32_t assoc_
uint32_t
stream
,
S1AP_S1AP_PDU_t
*
pdu
);
static
int
s1ap_eNB_handle_s1_ENDC_e_rab_modification_confirm
(
uint32_t
assoc_id
,
uint32_t
stream
,
S1AP_S1AP_PDU_t
*
pdu
);
/* Handlers matrix. Only eNB related procedure present here */
s1ap_message_decoded_callback
messages_callback
[][
3
]
=
{
{
0
,
0
,
0
},
/* HandoverPreparation */
...
...
@@ -154,6 +159,9 @@ s1ap_message_decoded_callback messages_callback[][3] = {
{
0
,
0
,
0
},
/* UplinkUEAssociatedLPPaTransport */
{
0
,
0
,
0
},
/* DownlinkNonUEAssociatedLPPaTransport */
{
0
,
0
,
0
},
/* UplinkNonUEAssociatedLPPaTransport */
{
0
,
0
,
0
},
/* UERadioCapabilityMatch */
{
0
,
0
,
0
},
/* PWSRestartIndication */
{
0
,
s1ap_eNB_handle_s1_ENDC_e_rab_modification_confirm
,
0
},
/* E_RABModificationIndication */
};
char
*
s1ap_direction2String
(
int
s1ap_dir
)
{
static
char
*
s1ap_direction_String
[]
=
{
...
...
@@ -1722,3 +1730,13 @@ int s1ap_eNB_handle_s1_path_switch_request_failure(uint32_t assoc_
// TODO continue
return
0
;
}
static
int
s1ap_eNB_handle_s1_ENDC_e_rab_modification_confirm
(
uint32_t
assoc_id
,
uint32_t
stream
,
S1AP_S1AP_PDU_t
*
pdu
){
LOG_W
(
S1AP
,
"Implementation of S1AP E-RAB Modification confirm handler is pending...
\n
"
);
return
0
;
}
openair3/S1AP/s1ap_eNB_nas_procedures.c
View file @
15428278
...
...
@@ -1650,7 +1650,6 @@ int s1ap_eNB_generate_E_RAB_Modification_Indication(
DevAssert
(
s1ap_eNB_instance_p
!=
NULL
);
DevAssert
(
e_rab_modification_ind
!=
NULL
);
// Currently hardcoded (dummy) values filling the fields of E_RAB_Modification_Indication message. To be substituted
int
num_e_rabs_tobemodified
=
e_rab_modification_ind
->
nb_of_e_rabs_tobemodified
;
int
num_e_rabs_nottobemodified
=
e_rab_modification_ind
->
nb_of_e_rabs_nottobemodified
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment