aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/gsm_data.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-12-24 16:06:33 +0100
committerHarald Welte <laforge@gnumonks.org>2010-12-24 16:07:40 +0100
commita29e43a26fae23d5132461cf7bfa43a1ca64761f (patch)
tree82f893561e7a5c55391f436985f5595a88d468e9 /openbsc/include/openbsc/gsm_data.h
parent75e2defc7f15b4c8e349af090acfdf31973272bf (diff)
BSC Call Control: Actually implement call statistics
The existing call realated statistics counters apparently were never used. This introduces a new set of counters, two for the MO and MT case.
Diffstat (limited to 'openbsc/include/openbsc/gsm_data.h')
-rw-r--r--openbsc/include/openbsc/gsm_data.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index b5f17ac74..b9ec94cf9 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -637,9 +637,10 @@ struct gsmnet_stats {
struct counter *rp_err_other;
} sms;
struct {
- struct counter *dialled; /* total number of dialled calls */
- struct counter *alerted; /* we alerted the other end */
- struct counter *connected;/* how many calls were accepted */
+ struct counter *mo_setup;
+ struct counter *mo_connect_ack;
+ struct counter *mt_setup;
+ struct counter *mt_connect;
} call;
struct {
struct counter *rf_fail;