Initial commit for Bronze release
[o-du/l2.git] / src / du_app / du_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<stdio.h>
21 #include<sys/types.h>
22 #include<string.h>
23 #include<ProtocolIE-Field.h>
24 #include "ProtocolExtensionField.h"
25 #include "F1AP-PDU.h"
26 #include "Cells-to-be-Activated-List.h"
27
28 #include "envopt.h"        /* Environment options */
29 #include "envdep.h"        /* Environment dependent */
30 #include "envind.h"        /* Environment independent */
31 #include "gen.h"           /* General */
32 #include "ssi.h"           /* System services */
33 #include "ss_queue.h"
34 #include "ss_task.h"
35 #include "ss_msg.h"
36
37 #include "gen.x"           /* General */
38 #include "ssi.x"   /* System services */
39 #include "ss_queue.x"
40 #include "ss_task.x"
41 #include "ss_msg.x"
42
43 #include "du_log.h"
44
45 #define ENCODE_FAIL -1
46 #define TRANS_ID 1
47 #define RRC_SIZE 1
48 #define ENC_BUF_MAX_LEN 100
49 #define SUL_BAND_COUNT 0
50 #define UL_SRBID        1
51 #define DL_SRBID        0
52 #define DU_ID           1
53 #define CU_ID           1
54 #define CRNTI           17017
55 #define CELL_INDEX      0
56
57
58
59
60 extern char encBuf[ENC_BUF_MAX_LEN];
61 int  encBufSize;
62
63 void F1APMsgHdlr(Buffer *mBuf);
64 S16 BuildAndSendF1SetupReq();
65 S16 procGNBDUCfgUpdAck(F1AP_PDU_t *f1apMsg);
66
67 /**********************************************************************
68          End of file
69 **********************************************************************/