diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-06-01 10:47:07 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-06-01 10:47:07 +0200 |
commit | c226317c9c7297bebd030af3a7ffd13f2272bc59 (patch) | |
tree | 19a65c0576239bb3a87c7f4cd66405eb8e262219 /include/osmocore | |
parent | 4c053013c9ffe186996668a36ebe7c326083dc58 (diff) |
add new new gprs_tmsi2tlli() function
Diffstat (limited to 'include/osmocore')
-rw-r--r-- | include/osmocore/gsm_utils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/osmocore/gsm_utils.h b/include/osmocore/gsm_utils.h index 51e9f2e6..685bc901 100644 --- a/include/osmocore/gsm_utils.h +++ b/include/osmocore/gsm_utils.h @@ -88,7 +88,7 @@ void gsm_fn2gsmtime(struct gsm_time *time, uint32_t fn); uint32_t gsm_gsmtime2fn(struct gsm_time *time); /* GSM TS 03.03 Chapter 2.6 */ -enum gprs_tlli_tyoe { +enum gprs_tlli_type { TLLI_LOCAL, TLLI_FOREIGN, TLLI_RANDOM, @@ -99,5 +99,7 @@ enum gprs_tlli_tyoe { /* TS 03.03 Chapter 2.6 */ int gprs_tlli_type(uint32_t tlli); +uint32_t gprs_tmsi2tlli(uint32_t p_tmsi, enum gprs_tlli_type type); + void generate_backtrace(); #endif |