Fix licensing issues
[ric-plt/resource-status-manager.git] / RSM / asn1codec / inc / asn1codec_utils.h
diff --git a/RSM/asn1codec/inc/asn1codec_utils.h b/RSM/asn1codec/inc/asn1codec_utils.h
deleted file mode 100644 (file)
index 7619d77..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- *
- * Copyright 2019 AT&T Intellectual Property
- * Copyright 2019 Nokia
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-#ifndef INC_ASN1CODEC_UTILS_H_
-#define INC_ASN1CODEC_UTILS_H_
-
-#ifndef ASN_DISABLE_OER_SUPPORT
-#define ASN_DISABLE_OER_SUPPORT
-#endif
-
-#ifndef ASN_PDU_COLLECTION
-#define ASN_PDU_COLLECTION
-#endif
-
-#include <stdbool.h>
-#include <E2AP-PDU.h>
-#include <ProtocolIE-Field.h>
-#include <ProtocolExtensionContainer.h>
-#include <ProtocolExtensionField.h>
-#include <CriticalityDiagnostics-IE-List.h>
-
-#define pLMN_Identity_size 3
-#define shortMacro_eNB_ID_size  18
-#define macro_eNB_ID_size       20
-#define longMacro_eNB_ID_size   21
-#define home_eNB_ID_size        28
-#define eUTRANcellIdentifier_size 28
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-bool asn1_pdu_printer(const E2AP_PDU_t *pdu, size_t obufsz, char *buf);
-bool asn1_pdu_xer_printer(const E2AP_PDU_t *pdu, size_t obufsz, char *buf);
-bool per_unpack_pdu(E2AP_PDU_t *pdu, size_t packed_buf_size, unsigned char* packed_buf,size_t err_buf_size, char* err_buf);
-bool per_pack_pdu(E2AP_PDU_t *pdu, size_t *packed_buf_size, unsigned char* packed_buf,size_t err_buf_size, char* err_buf);
-bool unpack_pdu_aux(E2AP_PDU_t *pdu, size_t packed_buf_size, unsigned char* packed_buf,size_t err_buf_size, char* err_buf,enum asn_transfer_syntax syntax);
-bool pack_pdu_aux(E2AP_PDU_t *pdu, size_t *packed_buf_size, unsigned char* packed_buf,size_t err_buf_size, char* err_buf,enum asn_transfer_syntax syntax);
-
-E2AP_PDU_t *new_pdu();
-void delete_pdu(E2AP_PDU_t *pdu);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* INC_ASN1CODEC_UTILS_H_ */