Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
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
spbro
OpenXG-RAN
Commits
e8efa8bc
Commit
e8efa8bc
authored
11 months ago
by
Rúben Soares da Silva
Committed by
Rúben Soares Silva
9 months ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add utility functions related to START.request
parent
d2316c85
Branches unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
+3
-0
nfapi/open-nFAPI/fapi/src/nr_fapi_p5_utils.c
nfapi/open-nFAPI/fapi/src/nr_fapi_p5_utils.c
+27
-0
No files found.
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
View file @
e8efa8bc
...
...
@@ -44,15 +44,18 @@ bool compare_param_request(const nfapi_nr_param_request_scf_t *unpacked_req, con
bool
compare_param_response
(
const
nfapi_nr_param_response_scf_t
*
unpacked_req
,
const
nfapi_nr_param_response_scf_t
*
req
);
bool
compare_config_request
(
const
nfapi_nr_config_request_scf_t
*
unpacked_req
,
const
nfapi_nr_config_request_scf_t
*
req
);
bool
compare_config_response
(
const
nfapi_nr_config_response_scf_t
*
unpacked_req
,
const
nfapi_nr_config_response_scf_t
*
req
);
bool
compare_start_request
(
const
nfapi_nr_start_request_scf_t
*
unpacked_req
,
const
nfapi_nr_start_request_scf_t
*
req
);
void
free_param_request
(
nfapi_nr_param_request_scf_t
*
msg
);
void
free_param_response
(
nfapi_nr_param_response_scf_t
*
msg
);
void
free_config_request
(
nfapi_nr_config_request_scf_t
*
msg
);
void
free_config_response
(
nfapi_nr_config_response_scf_t
*
msg
);
void
free_start_request
(
nfapi_nr_start_request_scf_t
*
msg
);
void
copy_param_request
(
const
nfapi_nr_param_request_scf_t
*
src
,
nfapi_nr_param_request_scf_t
*
dst
);
void
copy_param_response
(
const
nfapi_nr_param_response_scf_t
*
src
,
nfapi_nr_param_response_scf_t
*
dst
);
void
copy_config_request
(
const
nfapi_nr_config_request_scf_t
*
src
,
nfapi_nr_config_request_scf_t
*
dst
);
void
copy_config_response
(
const
nfapi_nr_config_response_scf_t
*
src
,
nfapi_nr_config_response_scf_t
*
dst
);
void
copy_start_request
(
const
nfapi_nr_start_request_scf_t
*
src
,
nfapi_nr_start_request_scf_t
*
dst
);
#endif // OPENAIRINTERFACE_NR_FAPI_P5_UTILS_H
This diff is collapsed.
Click to expand it.
nfapi/open-nFAPI/fapi/src/nr_fapi_p5_utils.c
View file @
e8efa8bc
...
...
@@ -466,6 +466,13 @@ bool compare_config_response(const nfapi_nr_config_response_scf_t *unpacked_req,
return
true
;
}
bool
compare_start_request
(
const
nfapi_nr_start_request_scf_t
*
unpacked_req
,
const
nfapi_nr_start_request_scf_t
*
req
)
{
CMP
(
unpacked_req
->
header
.
message_id
,
req
->
header
.
message_id
);
CMP
(
unpacked_req
->
header
.
message_length
,
req
->
header
.
message_length
);
return
true
;
}
void
free_param_request
(
nfapi_nr_param_request_scf_t
*
msg
)
{
if
(
msg
->
vendor_extension
)
{
...
...
@@ -534,6 +541,14 @@ void free_config_response(nfapi_nr_config_response_scf_t *msg)
free
(
msg
->
missing_tlvs_list
);
}
}
void
free_start_request
(
nfapi_nr_start_request_scf_t
*
msg
)
{
if
(
msg
->
vendor_extension
)
{
free
(
msg
->
vendor_extension
);
}
}
void
copy_tl
(
const
nfapi_tl_t
*
src
,
nfapi_tl_t
*
dst
)
{
dst
->
tag
=
src
->
tag
;
...
...
@@ -1050,3 +1065,15 @@ void copy_config_response(const nfapi_nr_config_response_scf_t *src, nfapi_nr_co
}
}
void
copy_start_request
(
const
nfapi_nr_start_request_scf_t
*
src
,
nfapi_nr_start_request_scf_t
*
dst
)
{
dst
->
header
.
message_id
=
src
->
header
.
message_id
;
dst
->
header
.
message_length
=
src
->
header
.
message_length
;
if
(
src
->
vendor_extension
)
{
dst
->
vendor_extension
=
calloc
(
1
,
sizeof
(
nfapi_vendor_extension_tlv_t
));
dst
->
vendor_extension
->
tag
=
src
->
vendor_extension
->
tag
;
dst
->
vendor_extension
->
length
=
src
->
vendor_extension
->
length
;
copy_vendor_extension_value
(
&
dst
->
vendor_extension
,
&
src
->
vendor_extension
);
}
}
This diff is collapsed.
Click to expand it.
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