open5gs/src/mme/app-init.c

45 lines
1.2 KiB
C

/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "ogs-sctp.h"
#include "ogs-app.h"
int app_initialize(const char *const argv[])
{
int rv;
ogs_sctp_init(ogs_app()->usrsctp.udp_port);
rv = mme_initialize();
if (rv != OGS_OK) {
ogs_error("Failed to intialize MME");
return rv;
}
ogs_info("MME initialize...done");
return OGS_OK;
}
void app_terminate(void)
{
mme_terminate();
ogs_sctp_final();
ogs_info("MME terminate...done");
}