aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/bsc_nat.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2011-05-06 12:13:10 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2011-05-06 12:14:16 +0200
commitdfb342c19af19b60350849f40d1be5e8f7a530a5 (patch)
tree9d5480b01ec8abc805069c92c3fd122bd9206429 /openbsc/include/openbsc/bsc_nat.h
parente1273b1f3c2c1bf44a2b8c274b880370d6de25cf (diff)
src: use namespace prefix osmo_counter*
Summary of changes: s/struct counter/struct osmo_counter/g s/counter_inc/osmo_counter_inc/g s/counter_get/osmo_counter_get/g s/counter_reset/osmo_counter_reset/g s/counter_alloc/osmo_counter_alloc/g s/counter_free/osmo_counter_free
Diffstat (limited to 'openbsc/include/openbsc/bsc_nat.h')
-rw-r--r--openbsc/include/openbsc/bsc_nat.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbsc/include/openbsc/bsc_nat.h b/openbsc/include/openbsc/bsc_nat.h
index 52b2ce513..0894f2516 100644
--- a/openbsc/include/openbsc/bsc_nat.h
+++ b/openbsc/include/openbsc/bsc_nat.h
@@ -179,21 +179,21 @@ struct bsc_endpoint {
*/
struct bsc_nat_statistics {
struct {
- struct counter *conn;
- struct counter *calls;
+ struct osmo_counter *conn;
+ struct osmo_counter *calls;
} sccp;
struct {
- struct counter *reconn;
- struct counter *auth_fail;
+ struct osmo_counter *reconn;
+ struct osmo_counter *auth_fail;
} bsc;
struct {
- struct counter *reconn;
+ struct osmo_counter *reconn;
} msc;
struct {
- struct counter *reconn;
+ struct osmo_counter *reconn;
} ussd;
};