mirror of
				https://github.com/nextepc/nextepc-oss.git
				synced 2025-11-03 21:33:14 +00:00 
			
		
		
		
	- Set the number of UEs in units of AMF/MME instead of gNB/eNB.
- See default value as shown below
    Number of UEs per AMF/MME : 4,096
    Number of gNB/eNB per AMF/MME : 32
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 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/>.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef OGS_GTP_H
 | 
						|
#define OGS_GTP_H
 | 
						|
 | 
						|
#include "ogs-core.h"
 | 
						|
#include "ogs-app.h"
 | 
						|
 | 
						|
#define OGS_GTPV1_U_UDP_PORT            2152
 | 
						|
#define OGS_GTPV2_C_UDP_PORT            2123
 | 
						|
 | 
						|
#define OGS_GTP_INSIDE
 | 
						|
 | 
						|
#include "gtp/message.h"
 | 
						|
#include "gtp/types.h"
 | 
						|
#include "gtp/conv.h"
 | 
						|
#include "gtp/node.h"
 | 
						|
#include "gtp/build.h"
 | 
						|
#include "gtp/path.h"
 | 
						|
#include "gtp/xact.h"
 | 
						|
#include "gtp/util.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#undef OGS_GTP_INSIDE
 | 
						|
 | 
						|
extern int __ogs_gtp_domain;
 | 
						|
 | 
						|
#undef OGS_LOG_DOMAIN
 | 
						|
#define OGS_LOG_DOMAIN __ogs_gtp_domain
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* OGS_GTP_H */
 |