diff options
author | Daniel Willmann <daniel@totalueberwachung.de> | 2011-04-08 10:46:18 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2011-04-09 20:52:12 +0200 |
commit | 2d42ddeba37ed7e0d54bf10dc66b7549ad43bc5b (patch) | |
tree | e13f0915be3caacc5ea78ec917ab9a5109972f61 /include/osmocom | |
parent | 952a18ed19f531b82e26108f8c46ef225fddef43 (diff) |
Add functions to search for rate counters by name
* rate_ctr_get_group_by_name_idx, rate_ctr_get_by_name
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/core/rate_ctr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/core/rate_ctr.h b/include/osmocom/core/rate_ctr.h index 9efc23db..63baa322 100644 --- a/include/osmocom/core/rate_ctr.h +++ b/include/osmocom/core/rate_ctr.h @@ -75,4 +75,6 @@ static inline void rate_ctr_inc(struct rate_ctr *ctr) /* Initialize the counter module */ int rate_ctr_init(void *tall_ctx); +struct rate_ctr_group *rate_ctr_get_group_by_name_idx(const char *name, const unsigned int idx); +struct rate_ctr *rate_ctr_get_by_name(const struct rate_ctr_group *ctrg, const char *name); #endif /* RATE_CTR_H */ |