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
littleBu
OpenXG-RAN
Commits
c95c12e8
Commit
c95c12e8
authored
1 year 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 ERROR.indication
parent
1d6dc567
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-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
+35
-0
No files found.
nfapi/open-nFAPI/fapi/inc/nr_fapi_p5_utils.h
View file @
c95c12e8
...
...
@@ -71,6 +71,7 @@ bool eq_start_request(const nfapi_nr_start_request_scf_t *unpacked_req, const nf
bool
eq_start_response
(
const
nfapi_nr_start_response_scf_t
*
unpacked_req
,
const
nfapi_nr_start_response_scf_t
*
req
);
bool
eq_stop_request
(
const
nfapi_nr_stop_request_scf_t
*
unpacked_req
,
const
nfapi_nr_stop_request_scf_t
*
req
);
bool
eq_stop_indication
(
const
nfapi_nr_stop_indication_scf_t
*
unpacked_req
,
const
nfapi_nr_stop_indication_scf_t
*
req
);
bool
eq_error_indication
(
const
nfapi_nr_error_indication_scf_t
*
unpacked_req
,
const
nfapi_nr_error_indication_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
);
...
...
@@ -80,6 +81,7 @@ void free_start_request(nfapi_nr_start_request_scf_t *msg);
void
free_start_response
(
nfapi_nr_start_response_scf_t
*
msg
);
void
free_stop_request
(
nfapi_nr_stop_request_scf_t
*
msg
);
void
free_stop_indication
(
nfapi_nr_stop_indication_scf_t
*
msg
);
void
free_error_indication
(
nfapi_nr_error_indication_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
);
...
...
@@ -89,5 +91,6 @@ void copy_start_request(const nfapi_nr_start_request_scf_t *src, nfapi_nr_start_
void
copy_start_response
(
const
nfapi_nr_start_response_scf_t
*
src
,
nfapi_nr_start_response_scf_t
*
dst
);
void
copy_stop_request
(
const
nfapi_nr_stop_request_scf_t
*
src
,
nfapi_nr_stop_request_scf_t
*
dst
);
void
copy_stop_indication
(
const
nfapi_nr_stop_indication_scf_t
*
src
,
nfapi_nr_stop_indication_scf_t
*
dst
);
void
copy_error_indication
(
const
nfapi_nr_error_indication_scf_t
*
src
,
nfapi_nr_error_indication_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 @
c95c12e8
...
...
@@ -397,6 +397,17 @@ bool eq_stop_indication(const nfapi_nr_stop_indication_scf_t *unpacked_req, cons
return
true
;
}
bool
eq_error_indication
(
const
nfapi_nr_error_indication_scf_t
*
unpacked_req
,
const
nfapi_nr_error_indication_scf_t
*
req
)
{
EQ
(
unpacked_req
->
header
.
message_id
,
req
->
header
.
message_id
);
EQ
(
unpacked_req
->
header
.
message_length
,
req
->
header
.
message_length
);
EQ
(
unpacked_req
->
sfn
,
req
->
sfn
);
EQ
(
unpacked_req
->
slot
,
req
->
slot
);
EQ
(
unpacked_req
->
message_id
,
req
->
message_id
);
EQ
(
unpacked_req
->
error_code
,
req
->
error_code
);
return
true
;
}
void
free_param_request
(
nfapi_nr_param_request_scf_t
*
msg
)
{
if
(
msg
->
vendor_extension
)
{
...
...
@@ -494,6 +505,13 @@ void free_stop_indication(nfapi_nr_stop_indication_scf_t *msg)
}
}
void
free_error_indication
(
nfapi_nr_error_indication_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
;
...
...
@@ -934,3 +952,20 @@ void copy_stop_indication(const nfapi_nr_stop_indication_scf_t *src, nfapi_nr_st
copy_vendor_extension_value
(
&
dst
->
vendor_extension
,
&
src
->
vendor_extension
);
}
}
void
copy_error_indication
(
const
nfapi_nr_error_indication_scf_t
*
src
,
nfapi_nr_error_indication_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
);
}
dst
->
sfn
=
src
->
sfn
;
dst
->
slot
=
src
->
slot
;
dst
->
message_id
=
src
->
message_id
;
dst
->
error_code
=
src
->
error_code
;
}
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