Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
e19b7140
Commit
e19b7140
authored
9 months ago
by
Rúben Soares Silva
Browse files
Options
Downloads
Patches
Plain Diff
Add utility functions related to PARAM.request
parent
5ef1217a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!2823
Integration: `2024.w26` (part 2)
,
!2714
FAPI P5 Refactoring and unitary test creation
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
+22
-0
22 additions, 0 deletions
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
nfapi/open-nFAPI/fapi/src/nr_fapi_p5_utils.c
+47
-0
47 additions, 0 deletions
nfapi/open-nFAPI/fapi/src/nr_fapi_p5_utils.c
with
69 additions
and
0 deletions
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
+
22
−
0
View file @
e19b7140
...
...
@@ -34,5 +34,27 @@
#include
"stdio.h"
#include
"stdint.h"
#include
"nr_fapi.h"
#include
"nfapi/oai_integration/vendor_ext.h"
#define EQ_TLV(_tlv_a, _tlv_b) \
do { \
EQ(_tlv_a.tl.tag, _tlv_b.tl.tag); \
EQ(_tlv_a.value, _tlv_b.value); \
} while (0)
#define EQ(_a, _b) \
do { \
if ((_a) != (_b)) { \
return false; \
} \
} while (0)
void
copy_vendor_extension_value
(
nfapi_vendor_extension_tlv_t
*
dst
,
const
nfapi_vendor_extension_tlv_t
*
src
);
bool
eq_param_request
(
const
nfapi_nr_param_request_scf_t
*
unpacked_req
,
const
nfapi_nr_param_request_scf_t
*
req
);
void
free_param_request
(
nfapi_nr_param_request_scf_t
*
msg
);
void
copy_param_request
(
const
nfapi_nr_param_request_scf_t
*
src
,
nfapi_nr_param_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
+
47
−
0
View file @
e19b7140
...
...
@@ -29,3 +29,50 @@
* \warning
*/
#include
"nr_fapi_p5_utils.h"
void
copy_vendor_extension_value
(
nfapi_vendor_extension_tlv_t
*
dst
,
const
nfapi_vendor_extension_tlv_t
*
src
)
{
nfapi_tl_t
*
dst_tlv
=
(
nfapi_tl_t
*
)
dst
;
nfapi_tl_t
*
src_tlv
=
(
nfapi_tl_t
*
)
src
;
switch
(
dst_tlv
->
tag
)
{
case
VENDOR_EXT_TLV_2_TAG
:
{
vendor_ext_tlv_2
*
dst_ve
=
(
vendor_ext_tlv_2
*
)
dst_tlv
;
vendor_ext_tlv_2
*
src_ve
=
(
vendor_ext_tlv_2
*
)
src_tlv
;
dst_ve
->
dummy
=
src_ve
->
dummy
;
}
break
;
case
VENDOR_EXT_TLV_1_TAG
:
{
vendor_ext_tlv_1
*
dst_ve
=
(
vendor_ext_tlv_1
*
)
dst_tlv
;
vendor_ext_tlv_1
*
src_ve
=
(
vendor_ext_tlv_1
*
)
src_tlv
;
dst_ve
->
dummy
=
src_ve
->
dummy
;
}
break
;
}
}
bool
eq_param_request
(
const
nfapi_nr_param_request_scf_t
*
unpacked_req
,
const
nfapi_nr_param_request_scf_t
*
req
)
{
EQ
(
unpacked_req
->
header
.
message_id
,
req
->
header
.
message_id
);
EQ
(
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
)
{
free
(
msg
->
vendor_extension
);
}
}
void
copy_param_request
(
const
nfapi_nr_param_request_scf_t
*
src
,
nfapi_nr_param_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.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment