mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-03 05:23:38 +00:00
[AMF/MME] Remove code that doesn't work (#2013)
Based on the standard document below, when the UE is in the IDLE state, we checked the implicit timer and tried to send a message to the UE, but it doesn't work properly. So, first of all, I deleted the related code. - TS 24.301 Ch 5.3.7 If ISR is not activated, the network behaviour upon expiry of the mobile reachable timer is network dependent, but typically the network stops sending paging messages to the UE on the first expiry, and may take other appropriate actions - TS 24.501 Ch 5.3.7 The network behaviour upon expiry of the mobile reachable timer is network dependent, but typically the network stops sending paging messages to the UE on the first expiry, and may take other appropriate actions.
This commit is contained in:
@@ -159,12 +159,6 @@ void ogs_timer_stop_debug(ogs_timer_t *timer, const char *file_line)
|
||||
ogs_rbtree_delete(&manager->tree, timer);
|
||||
}
|
||||
|
||||
bool ogs_timer_running(ogs_timer_t *timer)
|
||||
{
|
||||
ogs_assert(timer);
|
||||
return timer->running;
|
||||
}
|
||||
|
||||
ogs_time_t ogs_timer_mgr_next(ogs_timer_mgr_t *manager)
|
||||
{
|
||||
ogs_time_t current;
|
||||
|
||||
@@ -58,8 +58,6 @@ void ogs_timer_start_debug(
|
||||
ogs_timer_stop_debug(timer, OGS_FILE_LINE)
|
||||
void ogs_timer_stop_debug(ogs_timer_t *timer, const char *file_line);
|
||||
|
||||
bool ogs_timer_running(ogs_timer_t *timer);
|
||||
|
||||
ogs_time_t ogs_timer_mgr_next(ogs_timer_mgr_t *manager);
|
||||
void ogs_timer_mgr_expire(ogs_timer_mgr_t *manager);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user