X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=e2sim%2Fasn1c%2Fper_encoder.h;fp=e2sim%2Fasn1c%2Fper_encoder.h;h=8bb0771701acf979575292554fea4512352d7818;hb=f5900596513e4359fc839ba361da085674e90b68;hp=0000000000000000000000000000000000000000;hpb=215d350dbe06a4c7ee370815f26128a7f7e160cb;p=sim%2Fe2-interface.git diff --git a/e2sim/asn1c/per_encoder.h b/e2sim/asn1c/per_encoder.h new file mode 100644 index 0000000..8bb0771 --- /dev/null +++ b/e2sim/asn1c/per_encoder.h @@ -0,0 +1,38 @@ +/*- + * Copyright (c) 2006-2017 Lev Walkin . All rights reserved. + * Redistribution and modifications are permitted subject to BSD license. + */ +#ifndef _PER_ENCODER_H_ +#define _PER_ENCODER_H_ + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +struct asn_TYPE_descriptor_s; /* Forward declaration */ + +/* + * Type of the generic PER encoder function. + */ +typedef asn_enc_rval_t(per_type_encoder_f)( + const struct asn_TYPE_descriptor_s *type_descriptor, + const asn_per_constraints_t *constraints, const void *struct_ptr, + asn_per_outp_t *per_output); + +int ignore_output(const void *data, size_t size, void *app_key); + +typedef struct enc_dyn_arg { + void *buffer; + size_t length; + size_t allocated; +} enc_dyn_arg; +int encode_dyn_cb(const void *buffer, size_t size, void *key); + +#ifdef __cplusplus +} +#endif + +#endif /* _PER_ENCODER_H_ */