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-Simple
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
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
CommunityXG
OpenXG-AMF-Simple
Commits
94376ca4
Commit
94376ca4
authored
Aug 10, 2020
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
For testing with dsTester
parent
d3f9851b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
src/amf-app/amf_n11.cpp
src/amf-app/amf_n11.cpp
+3
-3
src/oai-amf/main.cpp
src/oai-amf/main.cpp
+1
-1
src/sbi/amf_server/api/N1N2MessageCollectionDocumentApi.h
src/sbi/amf_server/api/N1N2MessageCollectionDocumentApi.h
+1
-1
No files found.
src/amf-app/amf_n11.cpp
View file @
94376ca4
...
...
@@ -160,7 +160,7 @@ void amf_n11::handle_itti_message(itti_nsmf_pdusession_update_sm_context &itti_m
smf_selection_from_context
(
smf_addr
);
}
//TODO:Remove hardcoded value (1 - SCID)
std
::
string
remote_uri
=
smf_addr
+
"/nsmf-pdusession/v
2/sm-contexts/"
+
"
1"
+
"/modify"
;
//scid
std
::
string
remote_uri
=
smf_addr
+
"/nsmf-pdusession/v
1/sm-contexts/"
+
"imsi-208950000000031-
1"
+
"/modify"
;
//scid
nlohmann
::
json
pdu_session_update_request
;
pdu_session_update_request
[
"n2SmInfoType"
]
=
"PDU_RES_SETUP_RSP"
;
pdu_session_update_request
[
"n2SmInfo"
][
"contentId"
]
=
"n2SmMsg"
;
...
...
@@ -229,7 +229,7 @@ void amf_n11::handle_itti_message(itti_smf_services_consumer &smf) {
//------------------------------------------------------------------------------
void
amf_n11
::
handle_pdu_session_initial_request
(
std
::
string
supi
,
std
::
shared_ptr
<
pdu_session_context
>
psc
,
std
::
string
smf_addr
,
bstring
sm_msg
,
std
::
string
dnn
)
{
//TODO: Remove hardcoded values
std
::
string
remote_uri
=
smf_addr
+
"/nsmf-pdusession/v
2
/sm-contexts"
;
std
::
string
remote_uri
=
smf_addr
+
"/nsmf-pdusession/v
1
/sm-contexts"
;
nlohmann
::
json
pdu_session_establishment_request
;
pdu_session_establishment_request
[
"supi"
]
=
supi
.
c_str
();
pdu_session_establishment_request
[
"pei"
]
=
"imei-200000000000001"
;
...
...
@@ -377,7 +377,7 @@ void amf_n11::curl_http_client(std::string remoteUri, std::string jsonData, std:
//TODO: free curl before returning
return
;
}
if
(
httpCode
!=
200
&&
httpCode
!=
201
)
{
if
(
httpCode
!=
200
&&
httpCode
!=
201
&&
httpCode
!=
204
)
{
is_response_ok
=
false
;
//TODO: error if there's no content in the response
if
(
!
(
multipart_parser
(
response
,
jsonData
,
n1sm
,
n2sm
)))
{
...
...
src/oai-amf/main.cpp
View file @
94376ca4
...
...
@@ -64,7 +64,7 @@ if (!Options::parse(argc, argv)) {
amf_app_inst
->
allRegistredModulesInit
(
modules
);
Logger
::
amf_app
().
debug
(
"Initiating AMF server endpoints"
);
Pistache
::
Address
addr
(
std
::
string
(
inet_ntoa
(
*
((
struct
in_addr
*
)
&
amf_cfg
.
n2
.
addr4
)))
,
Pistache
::
Port
(
8
282
));
Pistache
::
Address
addr
(
std
::
string
(
inet_ntoa
(
*
((
struct
in_addr
*
)
&
amf_cfg
.
n2
.
addr4
)))
,
Pistache
::
Port
(
8
0
));
AMFApiServer
amfApiServer
(
addr
,
amf_app_inst
);
amfApiServer
.
init
(
2
);
std
::
thread
amf_api_manager
(
&
AMFApiServer
::
start
,
amfApiServer
);
...
...
src/sbi/amf_server/api/N1N2MessageCollectionDocumentApi.h
View file @
94376ca4
...
...
@@ -44,7 +44,7 @@ public:
virtual
~
N1N2MessageCollectionDocumentApi
()
{}
void
init
();
const
std
::
string
base
=
"/namf-comm/v
2
"
;
const
std
::
string
base
=
"/namf-comm/v
1
"
;
private:
void
setupRoutes
();
...
...
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