[network] Make use of T3113 for paging

Add it to the configuration files and make use
of it in the the paging.c.
diff --git a/openbsc/src/openbsc.cfg.1-1 b/openbsc/src/openbsc.cfg.1-1
index bad6df7..d312843 100644
--- a/openbsc/src/openbsc.cfg.1-1
+++ b/openbsc/src/openbsc.cfg.1-1
@@ -12,6 +12,7 @@
  short name OpenBSC
  long name OpenBSC
  timer t3101 10
+ timer t3113 60
  bts 0
   type bs11
   band GSM900
diff --git a/openbsc/src/openbsc.cfg.1-2 b/openbsc/src/openbsc.cfg.1-2
index b4c956d..84d50c7 100644
--- a/openbsc/src/openbsc.cfg.1-2
+++ b/openbsc/src/openbsc.cfg.1-2
@@ -12,6 +12,7 @@
  short name OpenBSC
  long name OpenBSC
  timer t3101 10
+ timer t3113 60
  bts 0
   type bs11
   band GSM900
diff --git a/openbsc/src/openbsc.cfg.2-2 b/openbsc/src/openbsc.cfg.2-2
index e123a44..c1468a6 100644
--- a/openbsc/src/openbsc.cfg.2-2
+++ b/openbsc/src/openbsc.cfg.2-2
@@ -12,6 +12,7 @@
  short name OpenBSC
  long name OpenBSC
  timer t3101 10
+ timer t3113 60
  bts 0
   type bs11
   band GSM900
diff --git a/openbsc/src/openbsc.cfg.nanobts b/openbsc/src/openbsc.cfg.nanobts
index 7f98468..a1ceaec 100644
--- a/openbsc/src/openbsc.cfg.nanobts
+++ b/openbsc/src/openbsc.cfg.nanobts
@@ -12,6 +12,7 @@
  short name OpenBSC
  long name OpenBSC
  timer t3101 10
+ timer t3113 60
  bts 0
   type nanobts
   ip.access unit_id 1801 0
diff --git a/openbsc/src/paging.c b/openbsc/src/paging.c
index 69902e8..fe6ea52 100644
--- a/openbsc/src/paging.c
+++ b/openbsc/src/paging.c
@@ -239,7 +239,7 @@
 	req->cbfn_param = data;
 	req->T3113.cb = paging_T3113_expired;
 	req->T3113.data = req;
-	bsc_schedule_timer(&req->T3113, T3113_VALUE);
+	bsc_schedule_timer(&req->T3113, bts->network->T3113, 0);
 	llist_add_tail(&req->entry, &bts_entry->pending_requests);
 
 	if (!bsc_timer_pending(&bts_entry->work_timer))