ms: Set default CoDel interval to 4s

The current default interval is 2s which seems to be too short when
the DL TBF has to be established. This may cause freezing or really
slow TCP connections.

This commit increases the default value to 4s. When the
dl-tbf-idle-time is set, DL TBF are established less frequent, so
smaller values (like 2s or below) can be used to improve the average
latency when the load is high.

Sponsored-by: On-Waves ehf
This commit is contained in:
Jacob Erlbeck 2015-08-14 16:01:36 +02:00
parent ac28905082
commit 1c3b8998bc
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ extern "C" {
#include <osmocom/core/utils.h>
}
#define GPRS_CODEL_SLOW_INTERVAL_MS 2000
#define GPRS_CODEL_SLOW_INTERVAL_MS 4000
extern void *tall_pcu_ctx;