aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2016-01-22 17:58:17 +0100
committerJacob Erlbeck <jerlbeck@sysmocom.de>2016-02-08 00:45:38 +0100
commit8eb17143f2b3ab5d96c46d698722de9dc83ac5f4 (patch)
tree7324884088fcd6dab85b32787e2f99c538f91ee8 /src/tbf.h
parent81a04f7d79ab290028074cfa626498abfdb09937 (diff)
tbf: Add and use tbf->poll_ts
Currently tbf->control_ts is used to look up an incoming poll response. Since that may eventually change, poll timeouts could theoretically happen in that case. Store the real poll TS in tbf->poll_ts at all places where tbf->poll_fn is set. Do not use tbf->control_ts to look up outstanding polls. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/tbf.h')
-rw-r--r--src/tbf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tbf.h b/src/tbf.h
index f3487c6e..d23cf933 100644
--- a/src/tbf.h
+++ b/src/tbf.h
@@ -177,6 +177,7 @@ struct gprs_rlcmac_tbf {
enum gprs_rlcmac_tbf_poll_state poll_state;
uint32_t poll_fn; /* frame number to poll */
+ uint8_t poll_ts; /* TS to poll */
gprs_rlc m_rlc;