X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcodec_utils%2Fcommon%2Fodu_common_codec.h;h=1c06c6565927e881ede8179380b9bfebc78c256e;hb=c183ff1a9e7f53b352ce7b3a00304c192b45660d;hp=4d16da3a2cddf9067f6257af148b88fb77c7dc95;hpb=bb8df345963bb5ef2e035ead7731c1171e4cbbe0;p=o-du%2Fl2.git diff --git a/src/codec_utils/common/odu_common_codec.h b/src/codec_utils/common/odu_common_codec.h index 4d16da3a2..1c06c6565 100644 --- a/src/codec_utils/common/odu_common_codec.h +++ b/src/codec_utils/common/odu_common_codec.h @@ -19,56 +19,19 @@ #ifndef __ODU_COMMON_CODEC_H__ #define __ODU_COMMON_CODEC_H__ -#include "envopt.h" /* Environment options */ -#include "envdep.h" /* Environment dependent */ -#include "envind.h" /* Environment independent */ - -#include "gen.h" /* General */ -#include "gen.x" /* General */ -#include "ssi.h" -#include "OCTET_STRING.h" -#include "BIT_STRING.h" -#include "asn_codecs.h" - -#define ENC_BUF_MAX_LEN 200 +/*Buffer length which is used for allocation of encoded F1AP messages at CU*/ +#define ENC_BUF_MAX_LEN 2000 #define ENCODE_FAIL -1 - -typedef struct PlmnIdentity -{ - uint8_t mcc[3]; - uint8_t mnc[3]; -}Plmn; - -S16 buildPlmnId(Plmn plmn, OCTET_STRING_t *octe); -S16 fillBitString(BIT_STRING_t *id, U8 unusedBits, U8 byteSize, U8 val); +#define TEID_BIT_SIZE 24 char encBuf[ENC_BUF_MAX_LEN]; int encBufSize; - -/******************************************************************* - * - * @brief Writes the encoded chunks into a buffer - * - * @details - * - * Function : PrepFinalEncBuf - * - * Functionality:Fills the encoded buffer - * - * @params[in] void *buffer,initial encoded data - * @params[in] size_t size,size of buffer - * @params[in] void *encodedBuf,final buffer - * @return ROK - success - * RFAILED - failure - * - * ****************************************************************/ -static int PrepFinalEncBuf(const void *buffer, size_t size, void *encodedBuf) -{ - memcpy(encodedBuf + encBufSize, buffer, size); - encBufSize += size; - return 0; -} /* PrepFinalEncBuf */ +int PrepFinalEncBuf(const void *buffer, size_t size, void *encodedBuf); +uint8_t fillBitString(BIT_STRING_t *id, uint8_t unusedBits, uint8_t byteSize, uint64_t val); +uint8_t bitStringToInt(BIT_STRING_t *bitString, void *val); +void fillTeIdString(uint8_t bufSize, uint32_t val, uint8_t *buf); +void teIdStringToInt(uint8_t *buf, uint32_t *val); #endif