Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-NRF
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-NRF
Commits
836fd33b
Commit
836fd33b
authored
Jun 15, 2021
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cmake warnings
parent
7da2ddcc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
0 deletions
+8
-0
src/api-server/model/AccessTokenClaims.h
src/api-server/model/AccessTokenClaims.h
+1
-0
src/api-server/model/SubscriptionData.h
src/api-server/model/SubscriptionData.h
+1
-0
src/common/3gpp_29.510.h
src/common/3gpp_29.510.h
+2
-0
src/nrf_app/nrf_jwt.cpp
src/nrf_app/nrf_jwt.cpp
+4
-0
No files found.
src/api-server/model/AccessTokenClaims.h
View file @
836fd33b
...
...
@@ -71,6 +71,7 @@ typedef struct audience_s {
// TODO:
}
}
return
*
this
;
// TODO:
}
...
...
src/api-server/model/SubscriptionData.h
View file @
836fd33b
...
...
@@ -86,6 +86,7 @@ typedef struct subscription_condition_api_s {
subscription_condition_api_s
&
operator
=
(
subscription_condition_api_s
&
s
)
{
// TODO:
return
*
this
;
}
friend
void
to_json
(
...
...
src/common/3gpp_29.510.h
View file @
836fd33b
...
...
@@ -191,6 +191,7 @@ typedef struct subscription_condition_s {
// TODO:
}
}
return
*
this
;
// TODO:
}
...
...
@@ -258,6 +259,7 @@ typedef struct nf_service_version_s {
nf_service_version_s
&
operator
=
(
const
nf_service_version_s
&
s
)
{
api_version_in_uri
=
s
.
api_version_in_uri
;
api_full_version
=
s
.
api_full_version
;
return
*
this
;
}
std
::
string
to_string
()
const
{
...
...
src/nrf_app/nrf_jwt.cpp
View file @
836fd33b
...
...
@@ -54,6 +54,7 @@ bool nrf_jwt::generate_signature(
// Get the encoded string/assertion
signature
=
obj
.
signature
();
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -75,6 +76,7 @@ bool nrf_jwt::generate_signature(
// Get the encoded string/assertion
signature
=
obj
.
signature
();
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -83,6 +85,7 @@ bool nrf_jwt::get_secret_key(
const
std
::
string
&
target_nf_type
,
std
::
string
&
key
)
const
{
// TODO:
key
=
"secret"
;
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -91,6 +94,7 @@ bool nrf_jwt::get_secret_key(
std
::
string
&
key
)
const
{
// TODO:
key
=
"secret"
;
return
true
;
}
//------------------------------------------------------------------------------
...
...
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