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
3f090b62
Commit
3f090b62
authored
May 11, 2022
by
kharade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http2_fix
parent
f4651f7e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/amf-app/amf_n11.cpp
src/amf-app/amf_n11.cpp
+6
-4
No files found.
src/amf-app/amf_n11.cpp
View file @
3f090b62
...
...
@@ -774,7 +774,7 @@ void amf_n11::handle_itti_message(itti_n11_nf_instance_discovery& itti_msg) {
nlohmann
::
json
response_data
=
{};
uint32_t
response_code
=
0
;
curl_http_client
(
url
,
"GET"
,
""
,
response_data
,
response_code
);
curl_http_client
(
url
,
"GET"
,
""
,
response_data
,
response_code
,
http_version
);
// Notify to the result
if
(
itti_msg
.
promise_id
>
0
)
{
...
...
@@ -874,7 +874,7 @@ bool amf_n11::discover_smf(
nlohmann
::
json
response_data
=
{};
uint32_t
response_code
=
0
;
curl_http_client
(
url
,
"GET"
,
""
,
response_data
,
response_code
);
curl_http_client
(
url
,
"GET"
,
""
,
response_data
,
response_code
,
http_version
);
Logger
::
amf_n11
().
debug
(
"NFDiscovery, response from NRF, json data:
\n
%s"
,
...
...
@@ -1015,7 +1015,8 @@ bool amf_n11::send_ue_authentication_request(
nlohmann
::
json
response_data
=
{};
uint32_t
response_code
=
0
;
curl_http_client
(
url
,
"POST"
,
body
,
response_data
,
response_code
);
curl_http_client
(
url
,
"POST"
,
body
,
response_data
,
response_code
,
http_version
);
Logger
::
amf_n11
().
debug
(
"UE Authentication, response from AUSF, HTTP Code: %d"
,
response_code
);
...
...
@@ -1650,7 +1651,8 @@ bool amf_n11::get_nrf_uri(
nlohmann
::
json
response_data
=
{};
uint32_t
response_code
=
0
;
curl_http_client
(
nssf_url
,
"GET"
,
""
,
response_data
,
response_code
);
curl_http_client
(
nssf_url
,
"GET"
,
""
,
response_data
,
response_code
,
http_version
);
Logger
::
amf_n11
().
debug
(
"NS Selection, response from NSSF, json data:
\n
%s"
,
...
...
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