aboutsummaryrefslogtreecommitdiffstats
path: root/src/bts.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-13 16:43:26 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-13 16:43:26 +0100
commitb3d5ee2934f930e611cd4447b90dce6723340062 (patch)
treea6776f5f9a7568abee98556316617903a35cefe0 /src/bts.h
parent51e093bd1cbe6d91278f72c82fbd54711e4a9ede (diff)
bts: Count the number of llc frames that were "scheduled" to be sent
This does not mean that they have been successfully transferred to the SGSN/MS but at least that they have reached a certain point in the message flow.
Diffstat (limited to 'src/bts.h')
-rw-r--r--src/bts.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/bts.h b/src/bts.h
index 5a55ed08..7aa150b0 100644
--- a/src/bts.h
+++ b/src/bts.h
@@ -164,6 +164,7 @@ public:
CTR_SBA_TIMEDOUT,
CTR_LLC_FRAME_TIMEDOUT,
CTR_LLC_FRAME_DROPPED,
+ CTR_LLC_FRAME_SCHED,
CTR_RACH_REQUESTS,
};
@@ -207,8 +208,9 @@ public:
void sba_allocated();
void sba_freed();
void sba_timedout();
- void timedout_frame();
- void dropped_frame();
+ void llc_timedout_frame();
+ void llc_dropped_frame();
+ void llc_frame_sched();
void rach_frame();
/*
@@ -269,8 +271,9 @@ CREATE_COUNT_INLINE(decode_error, CTR_DECODE_ERRORS)
CREATE_COUNT_INLINE(sba_allocated, CTR_SBA_ALLOCATED)
CREATE_COUNT_INLINE(sba_freed, CTR_SBA_FREED)
CREATE_COUNT_INLINE(sba_timedout, CTR_SBA_TIMEDOUT)
-CREATE_COUNT_INLINE(timedout_frame, CTR_LLC_FRAME_TIMEDOUT);
-CREATE_COUNT_INLINE(dropped_frame, CTR_LLC_FRAME_DROPPED);
+CREATE_COUNT_INLINE(llc_timedout_frame, CTR_LLC_FRAME_TIMEDOUT);
+CREATE_COUNT_INLINE(llc_dropped_frame, CTR_LLC_FRAME_DROPPED);
+CREATE_COUNT_INLINE(llc_frame_sched, CTR_LLC_FRAME_SCHED);
CREATE_COUNT_INLINE(rach_frame, CTR_RACH_REQUESTS);
#undef CREATE_COUNT_INLINE