aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-13 19:36:57 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-13 19:36:57 +0100
commite9429b5d3ecb3176eaee45352d9b7d1d57fed1c5 (patch)
tree13cb50b276696f9333e144239503d3449d788311 /src/bts.h
parent55cf994c29754fb18852fffee96f00c436d70ee3 (diff)
rlc: Count the sent and resent RLC blocks
Diffstat (limited to 'src/bts.h')
-rw-r--r--src/bts.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bts.h b/src/bts.h
index 7aa150b0..0a18b7e8 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -158,6 +158,8 @@ public:
CTR_TBF_UL_ALLOCATED,
CTR_TBF_UL_FREED,
CTR_TBF_REUSED,
+ CTR_RLC_SENT,
+ CTR_RLC_RESENT,
CTR_DECODE_ERRORS,
CTR_SBA_ALLOCATED,
CTR_SBA_FREED,
@@ -204,6 +206,8 @@ public:
void tbf_ul_created();
void tbf_ul_freed();
void tbf_reused();
+ void rlc_sent();
+ void rlc_resent();
void decode_error();
void sba_allocated();
void sba_freed();
@@ -267,6 +271,8 @@ CREATE_COUNT_INLINE(tbf_dl_freed, CTR_TBF_DL_FREED)
CREATE_COUNT_INLINE(tbf_ul_created, CTR_TBF_UL_ALLOCATED)
CREATE_COUNT_INLINE(tbf_ul_freed, CTR_TBF_UL_FREED)
CREATE_COUNT_INLINE(tbf_reused, CTR_TBF_REUSED)
+CREATE_COUNT_INLINE(rlc_sent, CTR_RLC_SENT)
+CREATE_COUNT_INLINE(rlc_resent, CTR_RLC_RESENT)
CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS)
CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED)
CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED)