mirror of
				https://github.com/open5gs/open5gs.git
				synced 2025-11-04 05:53:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.8 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-core.h"
 | 
						|
 | 
						|
int __ogs_mem_domain;
 | 
						|
int __ogs_sock_domain;
 | 
						|
int __ogs_event_domain;
 | 
						|
int __ogs_thread_domain;
 | 
						|
int __ogs_tlv_domain;
 | 
						|
 | 
						|
static ogs_core_context_t self = {
 | 
						|
    .log.pool = 8,
 | 
						|
    .log.domain_pool = 64,
 | 
						|
    .log.level = OGS_LOG_DEFAULT,
 | 
						|
 | 
						|
    .pkbuf.pool = 8,
 | 
						|
    .pkbuf.config_pool = 8,
 | 
						|
 | 
						|
    .tlv.pool = 512,
 | 
						|
};
 | 
						|
 | 
						|
void ogs_core_initialize(void)
 | 
						|
{
 | 
						|
    ogs_mem_init();
 | 
						|
    ogs_log_init();
 | 
						|
    ogs_pkbuf_init();
 | 
						|
    ogs_socket_init();
 | 
						|
    ogs_tlv_init();
 | 
						|
 | 
						|
    ogs_log_install_domain(&__ogs_mem_domain, "mem", ogs_core()->log.level);
 | 
						|
    ogs_log_install_domain(&__ogs_sock_domain, "sock", ogs_core()->log.level);
 | 
						|
    ogs_log_install_domain(&__ogs_event_domain, "event", ogs_core()->log.level);
 | 
						|
    ogs_log_install_domain(&__ogs_thread_domain,
 | 
						|
            "thread", ogs_core()->log.level);
 | 
						|
    ogs_log_install_domain(&__ogs_tlv_domain, "tlv", ogs_core()->log.level);
 | 
						|
}
 | 
						|
 | 
						|
void ogs_core_terminate(void)
 | 
						|
{
 | 
						|
    ogs_tlv_final();
 | 
						|
    ogs_socket_final();
 | 
						|
    ogs_pkbuf_final();
 | 
						|
    ogs_log_final();
 | 
						|
    ogs_mem_final();
 | 
						|
}
 | 
						|
 | 
						|
ogs_core_context_t *ogs_core(void)
 | 
						|
{
 | 
						|
    return &self;
 | 
						|
}
 |