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.
32 lines
1022 B
C
32 lines
1022 B
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include "xnap_common.h"
|
|
#include "XNAP_XnAP-PDU.h"
|
|
|
|
ssize_t XNAP_generate_initiating_message(uint8_t **buffer,
|
|
uint32_t *length,
|
|
XNAP_ProcedureCode_t procedureCode,
|
|
XNAP_Criticality_t criticality,
|
|
asn_TYPE_descriptor_t *td,
|
|
void *sptr)
|
|
{
|
|
XNAP_XnAP_PDU_t pdu;
|
|
ssize_t encoded;
|
|
memset(&pdu, 0, sizeof(XNAP_XnAP_PDU_t));
|
|
pdu.present = XNAP_XnAP_PDU_PR_initiatingMessage;
|
|
pdu.choice.initiatingMessage->procedureCode = procedureCode;
|
|
pdu.choice.initiatingMessage->criticality = criticality;
|
|
ANY_fromType_aper((ANY_t *)&pdu.choice.initiatingMessage->value, td, sptr);
|
|
|
|
if ((encoded = aper_encode_to_new_buffer(&asn_DEF_XNAP_XnAP_PDU, 0, &pdu, (void **)buffer)) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
*length = encoded;
|
|
return encoded;
|
|
}
|
|
|