e2ap message cleanup
[o-du/l2.git] / src / du_app / du_e2ap_msg_hdl.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This file contains all E2AP message handler related functionality */
20 #include<stdio.h>
21 #include<sys/types.h>
22 #include<string.h>
23 #include<ProtocolIE-FieldE2.h>
24 #include "E2AP-PDU.h"
25 #include "PLMN-IdentityE2.h"
26 #include "RICeventTriggerDefinition.h"
27 #include "odu_common_codec.h"
28
29 #include "envopt.h"        /* Environment options */
30 #include "envdep.h"        /* Environment dependent */
31 #include "envind.h"        /* Environment independent */
32 #include "gen.h"           /* General */
33 #include "ssi.h"           /* System services */
34 #include "ss_queue.h"
35 #include "ss_task.h"
36 #include "ss_msg.h"
37
38 #include "gen.x"           /* General */
39 #include "ssi.x"   /* System services */
40 #include "ss_queue.x"
41 #include "ss_task.x"
42 #include "ss_msg.x"
43
44 #include "du_log.h"
45
46 #define ENCODE_FAIL -1
47
48 S16 sctpSend(Buffer *mBuf, U8 itfType);
49
50 typedef struct e2apDb
51 {
52   U16     ricId;                    
53   uint8_t *plmn;
54   U32     ricReqId;
55   U32     ricInstanceId;
56   U32     ranFuncId;
57   uint8_t *ricEventTrigger;
58   U32     ricActionId;
59   U32     ricActionType;
60 }E2apMsgDb;
61
62 E2apMsgDb e2apMsgDb;
63 uint8_t BuildAndSendE2SetupReq();
64 uint8_t deAllocateE2SetupReqMsg(E2AP_PDU_t *e2apMsg, \
65   E2setupRequest_t *e2SetupReq, uint8_t idx);
66 uint8_t SendE2APMsg(Region , Pool );
67 void E2APMsgHdlr(Buffer *mBuf);
68
69 /**********************************************************************
70          End of file
71 **********************************************************************/