Merge "FIX: move some end-to-end test configs to values.yaml for nanobot"
[it/test.git] / simulators / e2sim / src / E2AP / e2ap_asn_codec.hpp
1 /*****************************************************************************\r
2 #                                                                            *\r
3 # Copyright 2019 AT&T Intellectual Property                                  *\r
4 # Copyright 2019 Nokia                                                       *\r
5 #                                                                            *\r
6 # Licensed under the Apache License, Version 2.0 (the "License");            *\r
7 # you may not use this file except in compliance with the License.           *\r
8 # You may obtain a copy of the License at                                    *\r
9 #                                                                            *\r
10 #      http://www.apache.org/licenses/LICENSE-2.0                            *\r
11 #                                                                            *\r
12 # Unless required by applicable law or agreed to in writing, software        *\r
13 # distributed under the License is distributed on an "AS IS" BASIS,          *\r
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *\r
15 # See the License for the specific language governing permissions and        *\r
16 # limitations under the License.                                             *\r
17 #                                                                            *\r
18 ******************************************************************************/\r
19 #ifndef E2AP_ASN_CODEC_HPP\r
20 #define E2AP_ASN_CODEC_HPP\r
21 \r
22 #include "e2sim_defs.h"\r
23 #include "asn_e2ap.hpp"\r
24 \r
25 #define ERROR_MESSAGE_BUFFER 1024\r
26 #define PDU_PRINT_BUFFER     4096\r
27 \r
28 void e2ap_encode_pdu(e2ap_pdu_t* pdu, unsigned char* buf, int buf_size, int &encoded_size);\r
29 \r
30 void e2ap_decode_pdu(e2ap_pdu_t* pdu, unsigned char* buf, int &encoded_size);\r
31 \r
32 void e2ap_print_pdu(e2ap_pdu_t* pdu);\r
33 \r
34 #endif\r