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.
26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
#ifndef NFAPI_PNF_H_
|
|
#define NFAPI_PNF_H_
|
|
|
|
extern nfapi_ue_release_request_body_t release_rntis;
|
|
int oai_nfapi_rach_ind(nfapi_rach_indication_t *rach_ind);
|
|
void configure_nfapi_pnf(char *vnf_ip_addr, int vnf_p5_port, char *pnf_ip_addr, int pnf_p7_port, int vnf_p7_port);
|
|
void configure_nr_nfapi_pnf(char *vnf_ip_addr, int vnf_p5_port, char *pnf_ip_addr, int pnf_p7_port, int vnf_p7_port);
|
|
|
|
void oai_subframe_ind(uint16_t sfn, uint16_t sf);
|
|
struct NR_Sched_Rsp;
|
|
void handle_nr_slot_ind(uint16_t sfn, uint16_t slot, struct NR_Sched_Rsp *resp);
|
|
void sfnslot_add_slot(int mu, uint16_t *sfn, uint16_t *slot, int offset);
|
|
|
|
int oai_nfapi_nr_slot_indication(nfapi_nr_slot_indication_scf_t *ind);
|
|
int oai_nfapi_nr_rx_data_indication(nfapi_nr_rx_data_indication_t *ind);
|
|
int oai_nfapi_nr_crc_indication(nfapi_nr_crc_indication_t *ind);
|
|
int oai_nfapi_nr_srs_indication(nfapi_nr_srs_indication_t *ind);
|
|
int oai_nfapi_nr_uci_indication(nfapi_nr_uci_indication_t *ind);
|
|
int oai_nfapi_nr_rach_indication(nfapi_nr_rach_indication_t *ind);
|
|
void stop_nr_nfapi_pnf();
|
|
#endif /* NFAPI_PNF_H_ */
|