Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
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
OpenXG
OpenXG-SMF
Commits
8a45cd5d
Commit
8a45cd5d
authored
Mar 16, 2023
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Supi for N7
parent
08626257
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/smf_app/smf_context.cpp
src/smf_app/smf_context.cpp
+2
-2
src/smf_app/smf_n7.hpp
src/smf_app/smf_n7.hpp
+4
-4
No files found.
src/smf_app/smf_context.cpp
View file @
8a45cd5d
...
@@ -1484,8 +1484,8 @@ void smf_context::handle_pdu_session_create_sm_context_request(
...
@@ -1484,8 +1484,8 @@ void smf_context::handle_pdu_session_create_sm_context_request(
bool
use_pcf_policy
=
false
;
bool
use_pcf_policy
=
false
;
sp
.
get
()
->
policy_ptr
->
set_context
(
sp
.
get
()
->
policy_ptr
->
set_context
(
smf_supi_to_string_without_nulls
(
smreq
->
req
.
get_supi
()),
smf_supi_to_string_without_nulls
(
smreq
->
req
.
get_supi
()),
smreq
->
req
.
get_
dnn
(),
snssai
,
plmn
,
smreq
->
req
.
get_pdu_session_id
()
,
smreq
->
req
.
get_
supi_prefix
(),
smreq
->
req
.
get_dnn
(),
snssai
,
plmn
,
smreq
->
req
.
get_pdu_session_type
());
smreq
->
req
.
get_pdu_session_
id
(),
smreq
->
req
.
get_pdu_session_
type
());
// TODO what is the exact meaning of SCID? Is this unique per registration
// TODO what is the exact meaning of SCID? Is this unique per registration
// or unique per PDU session?
// or unique per PDU session?
...
...
src/smf_app/smf_n7.hpp
View file @
8a45cd5d
...
@@ -72,8 +72,9 @@ struct policy_association {
...
@@ -72,8 +72,9 @@ struct policy_association {
std
::
string
pcf_location
;
std
::
string
pcf_location
;
void
set_context
(
void
set_context
(
const
std
::
string
&
supi
,
const
std
::
string
&
dnn
,
const
snssai_t
&
snssai
,
const
std
::
string
&
supi
,
const
std
::
string
&
supi_prefix
,
const
plmn_t
&
plmn
,
const
uint8_t
pdu_session_id
,
const
std
::
string
&
dnn
,
const
snssai_t
&
snssai
,
const
plmn_t
&
plmn
,
const
uint8_t
pdu_session_id
,
const
pdu_session_type_t
&
pdu_session_type
)
{
const
pdu_session_type_t
&
pdu_session_type
)
{
oai
::
smf_server
::
model
::
Snssai
snssai_model
;
oai
::
smf_server
::
model
::
Snssai
snssai_model
;
snssai_model
.
setSst
(
snssai
.
sst
);
snssai_model
.
setSst
(
snssai
.
sst
);
...
@@ -90,8 +91,7 @@ struct policy_association {
...
@@ -90,8 +91,7 @@ struct policy_association {
context
=
{};
context
=
{};
context
.
setPduSessionId
(
pdu_session_id
);
context
.
setPduSessionId
(
pdu_session_id
);
// TODO only support imsi SUPI, not NAI
context
.
setSupi
(
smf_get_supi_with_prefix
(
supi_prefix
,
supi
));
context
.
setSupi
(
"imsi-"
+
supi
);
oai
::
smf_server
::
model
::
PduSessionType
pdu_session_type_model
;
oai
::
smf_server
::
model
::
PduSessionType
pdu_session_type_model
;
// hacky
// hacky
from_json
(
pdu_session_type
.
to_string
(),
pdu_session_type_model
);
from_json
(
pdu_session_type
.
to_string
(),
pdu_session_type_model
);
...
...
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