DL RRC Message Transfer from DU APP to RLC [Issue-ID: ODUHIGH-45]
[o-du/l2.git] / src / cu_stub / cu_f1ap_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 F1AP message handler related functionality */
20 #include<ProtocolIE-Field.h>
21 #include "ProtocolExtensionField.h"
22 #include "F1AP-PDU.h"
23 #include "Cells-to-be-Activated-List.h"
24 #include "DL-CCCH-Message.h"
25 #include "SRB-ToAddModList.h"
26 #include "SRB-ToAddMod.h"
27 #include "RRCSetup-IEs.h"
28 #include "RRCSetup.h"
29 #include "du_log.h"
30
31 #define ENCODE_FAIL -1
32 #define TRANS_ID 1
33 #define RRC_SIZE 1
34 #define SUL_BAND_COUNT 0
35 #define UL_SRBID        1
36 #define DL_SRBID        0
37 #define DU_ID           1
38 #define CU_ID           1
39 #define CRNTI           17017
40 #define CELL_INDEX      0
41 #define SRB1 1
42
43 #define CU_UE_F1AP_ID 0
44 #define DU_UE_F1AP_ID 1
45 #define SP_CELL_ID     2
46 #define SERV_CELL_IDX 3
47 #define CU_TO_DU_RRC_INF 4
48
49 typedef struct f1apDb
50 {
51    OCTET_STRING_t duToCuContainer;
52 }F1apMsgDb;
53   
54 F1apMsgDb f1apMsgDb;
55 void F1APMsgHdlr(Buffer *mBuf);
56
57 /**********************************************************************
58          End of file
59 **********************************************************************/