mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
- all RAN code, CI code, configuration files, dockerfiles, in CSSL v1.0
- all deployment code (openshift, charts, ancillary files like shell
scripts), in MIT
- documentation in CC-BY-4.0
- exceptions might apply and are listed in NOTICE
- there is a new LICENSES folder with all licenses
- CONTRIBUTIONS.md has been updated accordingly
For automated changes based on OAI PL v1.1:
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.{c,h,cpp}
perl -i~ -0pe 's/\/\*.*Licensed to the OpenAirInterface.*openairinterface.org\n#?/\/*\n * SPDX-License-Identifier: LicenseRef-CSSL-1.0\n/s' **/*.ts
perl -i~ -0pe 's/<!--.*Licensed to the OpenAirInterface.*openairinterface.org\n.*-->/<!-- SPDX-License-Identifier: LicenseRef-CSSL-1.0 -->/s' **/*.xml
The rest (cmake, files with missing license, cmake) manually.
25 lines
1.5 KiB
C
25 lines
1.5 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
#ifndef NRPPA_GNB_POSITIONING_PROCEDURES_H_
|
|
#define NRPPA_GNB_POSITIONING_PROCEDURES_H_
|
|
|
|
int nrppa_gNB_handle_trp_information_request(nrppa_gnb_ue_info_t *nrppa_msg_info, const NRPPA_NRPPA_PDU_t *pdu);
|
|
void free_trp_information_request(nrppa_trp_information_req_t *msg);
|
|
int nrppa_gNB_trp_information_response(instance_t instance, MessageDef *msg_p);
|
|
void free_trp_information_request(nrppa_trp_information_req_t *msg);
|
|
NRPPA_TRPInformationItem_t encode_trp_info_type_response_item_nrppa(nrppa_trp_information_type_response_item_t *in);
|
|
void free_trp_information_response(nrppa_trp_information_resp_t *msg);
|
|
int nrppa_gNB_handle_positioning_information_request(nrppa_gnb_ue_info_t *nrppa_msg_info, const NRPPA_NRPPA_PDU_t *pdu);
|
|
int nrppa_gNB_positioning_information_response(instance_t instance, MessageDef *msg_p);
|
|
NRPPA_SRSCarrier_List_t encode_srs_carrier_list_nrppa(const nrppa_srs_carrier_list_t *in_list);
|
|
void free_srs_carrier_list(nrppa_srs_carrier_list_t *srs_carrier_list);
|
|
void free_positioning_information_response(nrppa_positioning_information_resp_t *msg);
|
|
int nrppa_gNB_handle_positioning_activation_request(nrppa_gnb_ue_info_t *nrppa_msg_info, const NRPPA_NRPPA_PDU_t *pdu);
|
|
void decode_nrppa_srstype(NRPPA_SRSType_t *srs_type, nrppa_srs_type_t *out);
|
|
void free_positioning_activation_request(nrppa_positioning_activation_req_t *msg);
|
|
int nrppa_gNB_positioning_activation_response(instance_t instance, MessageDef *msg_p);
|
|
|
|
#endif /* NRPPA_GNB_POSITIONING_PROCEDURES_H_ */
|