gbproxy: Increase TLLI cache timeout to 10s

The range of SUSPEND/RESUME timers T3/T4 is up to 10s so we should keep
the cache entries valid for this time.

Fixes: OS#4895
Change-Id: I9e88e49981098831f3255938deb868f4503f650f
Related: SYS#5235
This commit is contained in:
Daniel Willmann 2021-01-13 18:16:04 +01:00
parent 02b24c5a44
commit ef0c2a4b85
1 changed files with 1 additions and 1 deletions

View File

@ -1413,7 +1413,7 @@ int gbproxy_init_config(struct gbproxy_config *cfg)
cfg->pool.bvc_fc_ratio = 100;
cfg->pool.null_nri_ranges = osmo_nri_ranges_alloc(cfg);
/* TODO: Make configurable */
cfg->tlli_cache.timeout = 5;
cfg->tlli_cache.timeout = 10;
hash_init(cfg->bss_nses);
hash_init(cfg->sgsn_nses);