mirror of
				https://github.com/open5gs/open5gs.git
				synced 2025-11-04 05:53:18 +00:00 
			
		
		
		
	The AMF shall assign a new 5G-GUTI for a particular UE: a) during a successful initial registration procedure; b) during a successful registration procedure for mobility registration update; and c) after a successful service request procedure invoked as a response to a paging request from the network and before the release of the N1 NAS signalling connection as specified in subclause 5.4.4.1. The AMF should assign a new 5G-GUTI for a particular UE during a successful registration procedure for periodic registration update. The AMF may assign a new 5G-GUTI at any time for a particular UE by performing the generic UE configuration update procedure.
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2019,2020 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 TEST_GMM_HANDLE_H
 | 
						|
#define TEST_GMM_HANDLE_H
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
void testgmm_handle_registration_accept(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_registration_accept_t *registration_accept);
 | 
						|
void testgmm_handle_service_accept(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_service_accept_t *service_accept);
 | 
						|
void testgmm_handle_service_reject(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_service_reject_t *service_reject);
 | 
						|
void testgmm_handle_identity_request(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_identity_request_t *identity_request);
 | 
						|
void testgmm_handle_authentication_request(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_authentication_request_t *authentication_request);
 | 
						|
void testgmm_handle_security_mode_command(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_security_mode_command_t *security_mode_command);
 | 
						|
void testgmm_handle_configuration_update_command(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_configuration_update_command_t
 | 
						|
            *configuration_update_command);
 | 
						|
void testgmm_handle_dl_nas_transport(test_ue_t *test_ue,
 | 
						|
        ogs_nas_5gs_dl_nas_transport_t *dl_nas_transport);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* TEST_GMM_HANDLE_H */
 |