aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_pcu.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-01-14 13:08:02 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2021-01-18 11:54:53 +0100
commit97296b299cab6ac9e66082bb4c65da7422f0db12 (patch)
tree7949d4a091b181a22026be6d6a211213c5d425b4 /src/gprs_pcu.c
parent05f9f59a6728a46738c3b41f74336059fcae77af (diff)
Move dl_arq_type field from BTS to PCU
Diffstat (limited to 'src/gprs_pcu.c')
-rw-r--r--src/gprs_pcu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gprs_pcu.c b/src/gprs_pcu.c
index 3b44d363..2a84f7bc 100644
--- a/src/gprs_pcu.c
+++ b/src/gprs_pcu.c
@@ -52,6 +52,9 @@ struct gprs_pcu *gprs_pcu_alloc(void *ctx)
pcu->vty.max_mcs_dl = MAX_EDGE_MCS;
pcu->vty.alpha = 0; /* a = 0.0 */
pcu->vty.dl_tbf_preemptive_retransmission = true;
+ /* By default resegmentation is supported in DL can also be configured
+ * through VTY */
+ pcu->vty.dl_arq_type = EGPRS_ARQ1;
pcu->T_defs = T_defs_pcu;
osmo_tdefs_reset(pcu->T_defs);