aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoding.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2016-01-29 16:39:21 +0100
committerJacob Erlbeck <jerlbeck@sysmocom.de>2016-02-08 00:45:38 +0100
commit6b356a58d1269fe4ad449bc868cbc734c6d2a28e (patch)
tree8736689113716ab1eebb56ef7055e4840700cf7b /src/encoding.h
parentf2694b74c9af6e308d3886cd3c75864d101de8d4 (diff)
tbf: Use TLLI as ID if TFI not yet assigned
Currently the old TFI is always used as ID when a PACKET DOWNLINK ASSIGNMENT is generated. This fails if the old TBF has not been fully assigned yet. The MS will then ignore the PDA. This commit changes write_packet_downlink_assignment to accept an additional parameter old_tfi_is_valid and uses the new TBF's TLLI instead of the olf TFI if that parameter is set to false. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/encoding.h')
-rw-r--r--src/encoding.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding.h b/src/encoding.h
index 6ee30ac8..12487258 100644
--- a/src/encoding.h
+++ b/src/encoding.h
@@ -55,7 +55,7 @@ public:
int8_t use_egprs);
static void write_packet_downlink_assignment(RlcMacDownlink_t * block,
- uint8_t old_tfi, uint8_t old_downlink,
+ bool old_tfi_is_valid, uint8_t old_tfi, uint8_t old_downlink,
struct gprs_rlcmac_tbf *tbf, uint8_t poll, uint8_t rrbp,
uint8_t alpha, uint8_t gamma,
int8_t ta_idx, uint8_t ta_ts, bool use_egprs);