aboutsummaryrefslogtreecommitdiffstats
path: root/src/llc.cpp
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/llc.cpp
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/llc.cpp')
-rw-r--r--src/llc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llc.cpp b/src/llc.cpp
index 88b701a1..1787daa6 100644
--- a/src/llc.cpp
+++ b/src/llc.cpp
@@ -60,7 +60,7 @@ void gprs_llc::clear(BTS *bts)
struct msgb *msg;
while ((msg = msgb_dequeue(&queue))) {
- bts->dropped_frame();
+ bts->llc_dropped_frame();
msgb_free(msg);
}
}