aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/bts.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-11-13 05:20:47 +0100
committerHarald Welte <laforge@gnumonks.org>2012-11-24 22:28:44 +0100
commit2bad1363e9acd340eff27bc0b3856ee6290c096c (patch)
treebe25222fe6a837ff97c0a2a09769dc08684752be /src/common/bts.c
parent9858a7defe4aee4e3a2fd59b7b57d9026fd91d04 (diff)
Add VTY configuration of paging queue size and lifetime of paging records
This may be adding bells and whistles that nobody wants to touch, but at least for current analysis/optimiziation they are useful to have. Later on they should probably be removed again and/or obsoleted by OML messages for configuration of paging behaviour by the BSC.
Diffstat (limited to 'src/common/bts.c')
-rw-r--r--src/common/bts.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/bts.c b/src/common/bts.c
index 208e1c60..e370b4bf 100644
--- a/src/common/bts.c
+++ b/src/common/bts.c
@@ -66,11 +66,12 @@ int bts_init(struct gsm_bts *bts)
INIT_LLIST_HEAD(&btsb->agch_queue);
- /* FIXME: make those parameters configurable */
+ /* configurable via VTY */
btsb->paging_state = paging_init(btsb, 200, 0);
+
+ /* configurable via OML */
btsb->load.ccch.load_ind_period = 60*100;
load_timer_start(bts);
-
btsb->rtp_jitter_buf_ms = 100;
btsb->max_ta = 63;