Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-AMF
Commits
dacb523b
Commit
dacb523b
authored
Aug 25, 2022
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix issue for SD
parent
d6e36d7d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
src/amf-app/amf_n2.cpp
src/amf-app/amf_n2.cpp
+1
-2
src/ngap/ngapMsgs/NGSetupFailure.cpp
src/ngap/ngapMsgs/NGSetupFailure.cpp
+1
-2
src/ngap/ngapMsgs/NGSetupFailure.hpp
src/ngap/ngapMsgs/NGSetupFailure.hpp
+1
-1
No files found.
src/amf-app/amf_n2.cpp
View file @
dacb523b
...
...
@@ -383,8 +383,7 @@ void amf_n2::handle_itti_message(
// encode NG SETUP FAILURE MESSAGE and send back
uint8_t
*
buffer
=
(
uint8_t
*
)
calloc
(
1
,
BUFFER_SIZE_1024
);
NGSetupFailureMsg
ngSetupFailure
;
ngSetupFailure
.
setCauseRadioNetwork
(
Ngap_CauseRadioNetwork_unspecified
,
Ngap_TimeToWait_v5s
);
ngSetupFailure
.
set
(
Ngap_CauseRadioNetwork_unspecified
,
Ngap_TimeToWait_v5s
);
int
encoded
=
ngSetupFailure
.
encode2Buffer
((
uint8_t
*
)
buffer
,
BUFFER_SIZE_1024
);
...
...
src/ngap/ngapMsgs/NGSetupFailure.cpp
View file @
dacb523b
...
...
@@ -94,8 +94,7 @@ void NGSetupFailureMsg::set(
}
//------------------------------------------------------------------------------
void
NGSetupFailureMsg
::
setCauseRadioNetwork
(
const
e_Ngap_CauseRadioNetwork
&
cause_value
)
{
void
NGSetupFailureMsg
::
set
(
const
e_Ngap_CauseRadioNetwork
&
cause_value
)
{
cause
.
setChoiceOfCause
(
Ngap_Cause_PR_radioNetwork
);
cause
.
setValue
(
cause_value
);
addCauseIE
();
...
...
src/ngap/ngapMsgs/NGSetupFailure.hpp
View file @
dacb523b
...
...
@@ -39,7 +39,7 @@ class NGSetupFailureMsg : public NgapMessage {
void
set
(
const
e_Ngap_CauseRadioNetwork
&
cause_value
,
const
e_Ngap_TimeToWait
&
time_to_wait
);
void
set
CauseRadioNetwork
(
const
e_Ngap_CauseRadioNetwork
&
cause_value
);
void
set
(
const
e_Ngap_CauseRadioNetwork
&
cause_value
);
bool
getCauseRadioNetwork
(
e_Ngap_CauseRadioNetwork
&
);
void
setCauseTransport
(
...
...
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