code changes in Gnb-DU config update for CLA [Issue Id - ODUHIGH-335]
[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 <stdbool.h>
21 #include <string.h>
22 #include<ProtocolIE-Field.h>
23 #include "ProtocolExtensionField.h"
24 #include "F1AP-PDU.h"
25 #include "Cells-to-be-Activated-List.h"
26 #include "DL-CCCH-Message.h"
27 #include "SRB-ToAddModList.h"
28 #include "SRB-ToAddMod.h"
29 #include "RRCSetup-IEs.h"
30 #include "RRCSetup.h"
31 #include "DL-DCCH-Message.h"
32 #include "RRCReconfiguration-IEs.h"
33 #include "RRCReconfiguration.h"
34 #include "DRB-ToAddModList.h"
35 #include "DRB-ToAddMod.h"
36 #include "SDAP-Config.h"
37 #include "du_log.h"
38
39 #define ENCODE_FAIL -1
40 #define TRANS_ID 1
41 #define RRC_SIZE 1
42 #define SUL_BAND_COUNT 0
43 #define UL_SRBID        1
44 #define DL_SRBID        0
45 #define DU_ID           1
46 #define CU_ID           1
47 #define CRNTI           17017
48 #define CELL_INDEX      0
49 #define SRB0 0
50 #define SRB1 1
51 #define SRB2 2
52 #define DRB1 1
53 #define DRB2 2
54 #define QCI  9
55
56 #define CU_UE_F1AP_ID 0
57 #define DU_UE_F1AP_ID 1
58 #define SP_CELL_ID     2
59 #define SERV_CELL_IDX 3
60 #define CU_TO_DU_RRC_INF 4
61
62 #define RRC_SETUP 1
63 #define REGISTRATION_ACCEPT 2
64 #define UE_CONTEXT_SETUP_REQ 3
65 #define UE_CONTEXT_SETUP_RSP 4
66 #define SECURITY_MODE_COMPLETE 5
67 #define RRC_RECONFIG 6
68 #define UE_CONTEXT_MOD_REQ 7
69
70 typedef struct f1apDb
71 {
72    uint8_t dlRrcMsgCount;
73    OCTET_STRING_t duToCuContainer;
74 }F1apMsgDb;
75   
76 F1apMsgDb f1apMsgDb;
77 void F1APMsgHdlr(Buffer *mBuf);
78 uint8_t BuildAndSendUeContextModificationReq();
79 uint8_t BuildAndSendUeContextReleaseCommand(uint8_t cuUeF1apId, uint8_t duUeF1apId);
80 uint8_t BuildAndSendF1ResetReq();
81 /**********************************************************************
82          End of file
83 **********************************************************************/