diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2018-03-22 14:04:30 +0100 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2018-04-13 05:27:02 +0200 |
commit | 43496206c18b783a0c82faacd964819f8ee2e837 (patch) | |
tree | 1de80c9ea275e109e567678c8bc3532db7eacfe9 /include/osmocom/gsm | |
parent | c62fc2d20f433117a123ec43862263c02013b460 (diff) |
add osmo_cgi_name()
This will be used by cell idenitifier list code, like upcoming neighbor_ident
VTY in osmo-bsc and regression tests.
Change-Id: Iebc5cdf61b697b1603900993fc265af3eca0cedf
Diffstat (limited to 'include/osmocom/gsm')
-rw-r--r-- | include/osmocom/gsm/gsm23003.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/gsm/gsm23003.h b/include/osmocom/gsm/gsm23003.h index 02e79714..fd4f3694 100644 --- a/include/osmocom/gsm/gsm23003.h +++ b/include/osmocom/gsm/gsm23003.h @@ -99,6 +99,8 @@ const char *osmo_mnc_name(uint16_t mnc, bool mnc_3_digits); const char *osmo_plmn_name(const struct osmo_plmn_id *plmn); const char *osmo_plmn_name2(const struct osmo_plmn_id *plmn); const char *osmo_lai_name(const struct osmo_location_area_id *lai); +const char *osmo_cgi_name(const struct osmo_cell_global_id *cgi); +const char *osmo_cgi_name2(const struct osmo_cell_global_id *cgi); void osmo_plmn_to_bcd(uint8_t *bcd_dst, const struct osmo_plmn_id *plmn); void osmo_plmn_from_bcd(const uint8_t *bcd_src, struct osmo_plmn_id *plmn); |