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.
74 lines
1.3 KiB
C
74 lines
1.3 KiB
C
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Copyright 2017 Cisco Systems, Inc.
|
|
*/
|
|
|
|
#ifndef _VENDOR_EXT_H_
|
|
#define _VENDOR_EXT_H_
|
|
|
|
#include "nfapi_interface.h"
|
|
|
|
typedef enum {
|
|
P5_VENDOR_EXT_REQ = NFAPI_VENDOR_EXT_MSG_MIN,
|
|
P5_VENDOR_EXT_RSP,
|
|
|
|
P7_VENDOR_EXT_REQ,
|
|
P7_VENDOR_EXT_IND
|
|
|
|
} vendor_ext_message_id_e;
|
|
|
|
typedef struct {
|
|
nfapi_p4_p5_message_header_t header;
|
|
uint16_t dummy1;
|
|
uint16_t dummy2;
|
|
} vendor_ext_p5_req;
|
|
|
|
typedef struct {
|
|
nfapi_p4_p5_message_header_t header;
|
|
uint16_t error_code;
|
|
} vendor_ext_p5_rsp;
|
|
|
|
typedef struct {
|
|
nfapi_p7_message_header_t header;
|
|
uint16_t dummy1;
|
|
uint16_t dummy2;
|
|
} vendor_ext_p7_req;
|
|
|
|
typedef struct {
|
|
nfapi_p7_message_header_t header;
|
|
uint16_t error_code;
|
|
} vendor_ext_p7_ind;
|
|
|
|
typedef struct {
|
|
nfapi_tl_t tl;
|
|
uint32_t dummy;
|
|
} vendor_ext_tlv_1;
|
|
|
|
#define VENDOR_EXT_TLV_1_TAG 0xF001
|
|
|
|
typedef struct {
|
|
nfapi_tl_t tl;
|
|
uint32_t dummy;
|
|
} vendor_ext_tlv_2;
|
|
|
|
#define VENDOR_EXT_TLV_2_TAG 0xF002
|
|
|
|
typedef enum {
|
|
NFAPI_MONOLITHIC=0,
|
|
NFAPI_MODE_PNF,
|
|
NFAPI_MODE_VNF,
|
|
NFAPI_UE_STUB_PNF,
|
|
NFAPI_UE_STUB_OFFNET,
|
|
NFAPI_MODE_STANDALONE_PNF,
|
|
NFAPI_MODE_AERIAL,
|
|
NFAPI_MODE_UNKNOWN
|
|
} nfapi_mode_t;
|
|
|
|
const char *nfapi_get_strmode(void);
|
|
void nfapi_logmode(void);
|
|
nfapi_mode_t nfapi_getmode(void);
|
|
void nfapi_setmode(nfapi_mode_t nfapi_mode);
|
|
#define NFAPI_MODE (nfapi_getmode())
|
|
#endif // _VENDOR_EXT_
|