aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gsm_data.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2010-01-07 20:44:32 +0100
committerHarald Welte <laforge@netfilter.org>2010-01-07 20:45:42 +0100
commit6e670aab5af6a355ea69edafb5d4f8adf387557a (patch)
tree0d611b49d68516c600a2db86121085ca92f682dc /openbsc/src/gsm_data.c
parent2ef156db4356bc2ffb31c59a12b71f8a4f7a75fb (diff)
introduce new gsm_bts_trx_by_nr() function
Diffstat (limited to 'openbsc/src/gsm_data.c')
-rw-r--r--openbsc/src/gsm_data.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbsc/src/gsm_data.c b/openbsc/src/gsm_data.c
index 446a82011..d2676db1b 100644
--- a/openbsc/src/gsm_data.c
+++ b/openbsc/src/gsm_data.c
@@ -365,6 +365,17 @@ const char *btstype2str(enum gsm_bts_type type)
return bts_types[type];
}
+struct gsm_bts_trx *gsm_bts_trx_by_nr(struct gsm_bts *bts, int nr)
+{
+ struct gsm_bts_trx *trx;
+
+ llist_for_each_entry(trx, &bts->trx_list, list) {
+ if (trx->nr == nr)
+ return trx;
+ }
+ return NULL;
+}
+
/* Search for a BTS in the given Location Area; optionally start searching
* with start_bts (for continuing to search after the first result) */
struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,