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
024dc223
Commit
024dc223
authored
Apr 21, 2023
by
Swetank Srivastava
Committed by
Vijay C
May 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crash fix due to AS_Security after rebase with 3GPP_TTCN_System_Simulator
parent
6a802b8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+3
-3
No files found.
openair2/RRC/LTE/rrc_eNB.c
View file @
024dc223
...
...
@@ -7177,9 +7177,9 @@ void rrc_eNB_as_security_configuration_req(
kRRCint
=
CALLOC
(
1
,
32
);
kUPenc
=
CALLOC
(
1
,
16
);
kRRCenc
=
CALLOC
(
1
,
16
);
memcpy
(
kRRCint
,
ASSecConfReq
->
Integrity
.
kRRCint
,
32
);
memcpy
(
kUPenc
,
ASSecConfReq
->
Ciphering
.
kUPenc
,
16
);
memcpy
(
kRRCenc
,
ASSecConfReq
->
Ciphering
.
kRRCenc
,
16
);
if
(
ASSecConfReq
->
Integrity
.
kRRCint
)
memcpy
(
kRRCint
,
ASSecConfReq
->
Integrity
.
kRRCint
,
32
);
if
(
ASSecConfReq
->
Ciphering
.
kUPenc
)
memcpy
(
kUPenc
,
ASSecConfReq
->
Ciphering
.
kUPenc
,
16
);
if
(
ASSecConfReq
->
Ciphering
.
kRRCenc
)
memcpy
(
kRRCenc
,
ASSecConfReq
->
Ciphering
.
kRRCenc
,
16
);
pdcp_config_set_security
(
ctxt_pP
,
...
...
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