aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorAravind Sirsikar <Arvind.Sirsikar@radisys.com>2016-05-31 16:39:27 +0530
committerAravind Sirsikar <Arvind.Sirsikar@radisys.com>2016-05-31 16:39:27 +0530
commit93ef548a43348d6a8c6c0bb301f2d60daeb7abc4 (patch)
tree06c2c6a2faf2553e2f8731f530541ecdf2442c5a /src/bts.h
parent6c0ff27cb5e6861c005419aad81460d7b02151f9 (diff)
parent2fcfc29020c81891d7888ddc7ddbcd866bcd406d (diff)
Merge branch 'master' of git://git.osmocom.org/osmo-pcu into Integration
Conflicts: src/tbf_ul.cpp
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 20606db..bfbe014 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -236,6 +236,8 @@ public:
CTR_RLC_ACK_FAILED,
CTR_RLC_REL_TIMEDOUT,
CTR_RLC_LATE_BLOCK,
+ CTR_RLC_SENT_DUMMY,
+ CTR_RLC_SENT_CONTROL,
CTR_DECODE_ERRORS,
CTR_SBA_ALLOCATED,
CTR_SBA_FREED,
@@ -312,6 +314,8 @@ public:
void rlc_ack_failed();
void rlc_rel_timedout();
void rlc_late_block();
+ void rlc_sent_dummy();
+ void rlc_sent_control();
void decode_error();
void sba_allocated();
void sba_freed();
@@ -452,6 +456,8 @@ CREATE_COUNT_INLINE(rlc_ack_timedout, CTR_RLC_ACK_TIMEDOUT);
CREATE_COUNT_INLINE(rlc_ack_failed, CTR_RLC_ACK_FAILED);
CREATE_COUNT_INLINE(rlc_rel_timedout, CTR_RLC_REL_TIMEDOUT);
CREATE_COUNT_INLINE(rlc_late_block, CTR_RLC_LATE_BLOCK);
+CREATE_COUNT_INLINE(rlc_sent_dummy, CTR_RLC_SENT_DUMMY);
+CREATE_COUNT_INLINE(rlc_sent_control, CTR_RLC_SENT_CONTROL);
CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS)
CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED)
CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED)