aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-11-17 08:42:05 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-01-15 14:46:19 +0100
commit8114294bf29ac6e44822c0ae43d4b0819f11b022 (patch)
tree5d065eccbb2b24bc7cdf674676e2d44ff2cc43c9 /include/osmocom/gsm
parent51660a6adefd59081f7f2883d76a875e8b2e89c9 (diff)
gsm: Add APN conversion functions
These functions are currently part of openbsc but also needed by other projects. The function have been renamed as follows: gprs_apn_to_str -> osmo_apn_to_str gprs_str_to_apn -> osmo_apn_from_str Sponsored-by: On-Waves ehf
Diffstat (limited to 'include/osmocom/gsm')
-rw-r--r--include/osmocom/gsm/apn.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/osmocom/gsm/apn.h b/include/osmocom/gsm/apn.h
index a256d973..b4ece3a2 100644
--- a/include/osmocom/gsm/apn.h
+++ b/include/osmocom/gsm/apn.h
@@ -14,3 +14,6 @@ char *osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni);
* static buffer. */
char *osmo_apn_qualify_from_imsi(const char *imsi,
const char *ni, int have_3dig_mnc);
+
+int osmo_apn_from_str(uint8_t *apn_enc, size_t max_apn_enc_len, const char *str);
+char * osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len);