aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_vty.c
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-09-28 18:54:32 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-12-15 15:19:42 +0100
commit5265f59525157d135c1051f057f836395782c98e (patch)
tree97cf1d5e7f45a54817e033deab6a026fa97b0e2b /src/pcu_vty.c
parent86b6f05d19c8559b99d548730e54c1a4bfb7beba (diff)
edge: Enable EGPRS if configured and egprs_ms_class present
Enable the TBF to use EGPRS if the bts->egprs_enabled config variable has been set via the VTY "egprs" command and if the MS has signaled a EGPRS multislot class. Tell the MS to use EGPRS if the condition above holds. Note that this will cause the MS to use EGPRS RLC block formats for further messages which are not yet understood by the PCU. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/pcu_vty.c')
-rw-r--r--src/pcu_vty.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pcu_vty.c b/src/pcu_vty.c
index 5196ae24..aa29b4c6 100644
--- a/src/pcu_vty.c
+++ b/src/pcu_vty.c
@@ -169,7 +169,10 @@ DEFUN(cfg_pcu_egprs,
bts->egprs_enabled = 1;
- vty_out(vty, "%%Note that EGPRS support is in an experimental state. "
+ vty_out(vty, "%%Note that EGPRS support is in an experimental state "
+ "and the PCU will currently fail to use a TBF if the MS is capable "
+ "to do EGPRS. You may want to disable this feature by entering "
+ "the \"no egprs\" command. "
"Do not use this in production!%s", VTY_NEWLINE);
return CMD_SUCCESS;