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
9743bbc4
Commit
9743bbc4
authored
Aug 05, 2022
by
KARIM
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the build
parent
f9865cd1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
src/amf-app/amf_event.hpp
src/amf-app/amf_event.hpp
+0
-1
src/amf-app/amf_n1.cpp
src/amf-app/amf_n1.cpp
+4
-4
src/amf-app/amf_n1.hpp
src/amf-app/amf_n1.hpp
+1
-0
src/amf-app/amf_n2.cpp
src/amf-app/amf_n2.cpp
+2
-2
src/amf-app/amf_sbi.cpp
src/amf-app/amf_sbi.cpp
+1
-0
No files found.
src/amf-app/amf_event.hpp
View file @
9743bbc4
...
...
@@ -98,7 +98,6 @@ class amf_event {
bs2
::
connection
subscribe_ue_communication_failure
(
const
ue_communication_failure_sig_t
::
slot_type
&
sig
);
private:
ue_location_report_sig_t
ue_location_report
;
// Signal for UE Location Report
ue_reachability_status_sig_t
ue_reachability_status
;
// Signal for UE Reachability Report
...
...
src/amf-app/amf_n1.cpp
View file @
9743bbc4
...
...
@@ -3800,7 +3800,7 @@ void amf_n1::handle_ue_communication_failure_change(
std
::
shared_ptr
<
itti_sbi_notify_subscribed_event
>
itti_msg
=
std
::
make_shared
<
itti_sbi_notify_subscribed_event
>
(
TASK_AMF_N1
,
TASK_AMF_
N11
);
TASK_AMF_N1
,
TASK_AMF_
SBI
);
itti_msg
->
http_version
=
1
;
...
...
@@ -3834,7 +3834,7 @@ void amf_n1::handle_ue_communication_failure_change(
int
ret
=
itti_inst
->
send_msg
(
itti_msg
);
if
(
0
!=
ret
)
{
Logger
::
amf_n1
().
error
(
"Could not send ITTI message %s to task TASK_AMF_
N11
"
,
"Could not send ITTI message %s to task TASK_AMF_
SBI
"
,
itti_msg
->
get_msg_name
());
}
}
...
...
@@ -3861,7 +3861,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change(
std
::
shared_ptr
<
itti_sbi_notify_subscribed_event
>
itti_msg
=
std
::
make_shared
<
itti_sbi_notify_subscribed_event
>
(
TASK_AMF_N1
,
TASK_AMF_
N11
);
TASK_AMF_N1
,
TASK_AMF_
SBI
);
itti_msg
->
http_version
=
1
;
...
...
@@ -3900,7 +3900,7 @@ void amf_n1::handle_ue_loss_of_connectivity_change(
int
ret
=
itti_inst
->
send_msg
(
itti_msg
);
if
(
0
!=
ret
)
{
Logger
::
amf_n1
().
error
(
"Could not send ITTI message %s to task TASK_AMF_
N11
"
,
"Could not send ITTI message %s to task TASK_AMF_
SBI
"
,
itti_msg
->
get_msg_name
());
}
}
...
...
src/amf-app/amf_n1.hpp
View file @
9743bbc4
...
...
@@ -837,6 +837,7 @@ class amf_n1 {
bs2
::
connection
ee_ue_registration_state_connection
;
bs2
::
connection
ee_ue_connectivity_state_connection
;
bs2
::
connection
ee_ue_loss_of_connectivity_connection
;
bs2
::
connection
ee_ue_communication_failure_connection
;
private:
...
...
src/amf-app/amf_n2.cpp
View file @
9743bbc4
...
...
@@ -1375,7 +1375,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) {
std
::
shared_ptr
<
itti_sbi_notify_subscribed_event
>
itti_msg_ev
=
std
::
make_shared
<
itti_sbi_notify_subscribed_event
>
(
TASK_AMF_N2
,
TASK_AMF_
N11
);
TASK_AMF_N2
,
TASK_AMF_
SBI
);
itti_msg_ev
->
http_version
=
1
;
...
...
@@ -1416,7 +1416,7 @@ void amf_n2::handle_itti_message(itti_ue_context_release_command& itti_msg) {
int
ret
=
itti_inst
->
send_msg
(
itti_msg_ev
);
if
(
0
!=
ret
)
{
Logger
::
amf_n2
().
error
(
"Could not send ITTI message %s to task TASK_AMF_
N11
"
,
"Could not send ITTI message %s to task TASK_AMF_
SBI
"
,
itti_msg_ev
->
get_msg_name
());
}
}
...
...
src/amf-app/amf_sbi.cpp
View file @
9743bbc4
...
...
@@ -591,6 +591,7 @@ void amf_sbi::handle_itti_message(itti_sbi_notify_subscribed_event& itti_msg) {
}
if
(
r
.
amfUeNgapIdIsSet
())
{
report
[
"amfUeNgapId"
]
=
r
.
getAmfUeNgapId
();
}
if
(
r
.
commFailureIsSet
())
{
report
[
"commFailure"
]
=
r
.
getCommFailure
();
}
...
...
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