X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcu_app%2Fcu_mgr_main.c;fp=src%2Fcu_app%2Fcu_mgr_main.c;h=0000000000000000000000000000000000000000;hb=d349ae65e1495488772f87e5cfa1ae71d9eab075;hp=ee878d01a9a1f51815f9d704fac713090ac2fda9;hpb=829bbd114f1c3dc00c1da47bca0a8207c049df3f;p=o-du%2Fl2.git diff --git a/src/cu_app/cu_mgr_main.c b/src/cu_app/cu_mgr_main.c deleted file mode 100644 index ee878d01a..000000000 --- a/src/cu_app/cu_mgr_main.c +++ /dev/null @@ -1,59 +0,0 @@ -/******************************************************************************* -################################################################################ -# Copyright (c) [2017-2019] [Radisys] # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -################################################################################ -*******************************************************************************/ - -/* This functions contains main() for cu_app */ - -#include "cu_mgr_main.h" -#include "cu_sctp.h" - -/******************************************************************* - * - * @brief Main function of CU APP - * - * @details - * - * Function : main - * - * Functionality: - * - Reads CU related configurations - * - Initialize SCTP Parameters - * - Start SCTP receiver thread - * - * @params[in] - * @return ROK - success - * RFAILED - failure - * - * ****************************************************************/ - -void main() -{ - printf("\nStarting cu_app"); - - /* Read CU configurations */ - readCuCfg(); - - /* Initializing SCTP global parameters */ - sctpActvInit(0, 0, 0, 0); - - /* Start CU-SCTP to listen on incoming connection */ - sctpStartReq(); -} - -/********************************************************************** - End of file -**********************************************************************/