8c86edd50ad2f1de4f91a58b01e9ae1c9dfee8b8
[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
21 #include "E2setupRequest.h"
22 #define ENCODE_FAIL -1
23
24 uint8_t sctpSend(Buffer *mBuf, uint8_t itfType);
25
26 typedef struct e2apDb
27 {
28    uint16_t     ricId;                    
29    uint8_t      *plmn;
30    uint32_t     ricReqId;
31    uint32_t     ricInstanceId;
32    uint32_t     ranFuncId;
33    uint8_t     *ricEventTrigger;
34    uint32_t     ricActionId;
35    uint32_t     ricActionType;
36 }E2apMsgDb;
37
38 E2apMsgDb e2apMsgDb;
39 uint8_t BuildAndSendE2SetupReq();
40 uint8_t SendE2APMsg(Region , Pool );
41 void E2APMsgHdlr(Buffer *mBuf);
42 uint8_t deAllocateE2SetupReqMsg(E2AP_PDU_t *e2apMsg, E2setupRequest_t *e2SetupReq, uint8_t idx);
43 /**********************************************************************
44   End of file
45  **********************************************************************/