Old ASN1 Decoding/Encoding files removal
[ric-app/hw.git] / src / xapp-asn / e2ap / e2ap_indication_helper.hpp
1 /*
2 ==================================================================================
3
4         Copyright (c) 2019-2020 AT&T Intellectual Property.
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 */
19 /*
20  * ric_indication.h
21  *
22  *  Created on: Jul 11, 2019
23  *      Author: sjana, Ashwin Sridharan
24  */
25
26
27 #ifndef E2AP_INDICATION_HELPER_
28 #define E2AP_INDICATION_HELPER_
29
30 typedef struct ric_indication_helper ric_indication_helper;
31
32 struct ric_indication_helper{
33   ric_indication_helper(void) : req_id(1), req_seq_no(1), func_id(0), action_id(1), indication_type(0), indication_sn(0), indication_msg(0), indication_msg_size(0), indication_header(0), indication_header_size(0), call_process_id(0), call_process_id_size(0) {};
34   long int req_id, req_seq_no, func_id, action_id, indication_type, indication_sn;
35   
36   unsigned char* indication_msg;
37   size_t indication_msg_size;
38   
39   unsigned char* indication_header;
40   size_t indication_header_size;
41   
42   unsigned char *call_process_id;
43   size_t call_process_id_size;
44   
45 };
46
47 #endif