Added code for MAC-PHY interface, DU_APP, F1AP, SCTP and CU stub
[o-du/l2.git] / src / cu_app / cu_app_f1ap.c
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 handler for incoming F1AP message and sending of F1AP response */
20
21 #include "cu_mgr_main.h"
22 #include "cu_sctp.h"
23
24 /*******************************************************************
25  *
26  * @brief Handles received F1AP message and sends back response  
27  *
28  * @details
29  *
30  *    Function : cuAppInmsgHdlr
31  *
32  *    Functionality:
33  *         - Decodes received F1AP control message
34  *         - Prepares response message, encodes and sends to SCTP
35  *
36  * @params[in] 
37  * @return ROK     - success
38  *         RFAILED - failure
39  *
40  * ****************************************************************/
41 void cuAppInmsgHdlr(char *recvBuf, U8 len)
42 {
43       char *respBuf;
44       U8   respLen = 0;
45
46    /* TODO : 
47       call ASN decoder for incoming message
48       Check message type and fills its response
49       Call ASN encoder for response 
50       Send Message to SCTP */ 
51   
52       sctpOutMsgSend(respBuf, respLen);
53
54 } /* End of cuAppInmsgHdlr */
55
56 /**********************************************************************
57          End of file
58 **********************************************************************/