libosmogsm  1.10.0.27-aec32.202411022026
Osmocom GSM library
apn.h
Go to the documentation of this file.
1 
3 #pragma once
4 
5 #include <stdint.h>
6 
7 /* 23.003 Section 9.1.1, excluding any terminating zero byte */
8 #define APN_NI_MAXLEN 63
9 
10 /* 23.003 Section 9.1, excluding any terminating zero byte */
11 #define APN_MAXLEN 100
12 
13 char *osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni);
14 char *osmo_apn_qualify_buf(char *buf, size_t buf_len, unsigned int mcc, unsigned int mnc, const char *ni);
15 char *osmo_apn_qualify_c(const void *ctx, unsigned int mcc, unsigned int mnc, const char *ni);
16 
17 /* Compose a string of the form '<ni>.mnc001.mcc002.gprs\0', returned in a
18  * static buffer. */
19 char *osmo_apn_qualify_from_imsi(const char *imsi,
20  const char *ni, int have_3dig_mnc);
21 char *osmo_apn_qualify_from_imsi_buf(char *buf, size_t buf_len, const char *imsi,
22  const char *ni, int have_3dig_mnc);
23 char *osmo_apn_qualify_from_imsi_c(const void *ctx, const char *imsi, const char *ni, int have_3dig_mnc);
24 
25 int osmo_apn_from_str(uint8_t *apn_enc, size_t max_apn_enc_len, const char *str);
26 char *osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len);
char * osmo_apn_qualify_from_imsi_c(const void *ctx, const char *imsi, const char *ni, int have_3dig_mnc)
Definition: apn.c:81
char * osmo_apn_qualify_buf(char *buf, size_t buf_len, unsigned int mcc, unsigned int mnc, const char *ni)
Definition: apn.c:36
char * osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len)
Convert an encoded APN into a dot-separated string.
Definition: apn.c:98
char * osmo_apn_qualify_from_imsi_buf(char *buf, size_t buf_len, const char *imsi, const char *ni, int have_3dig_mnc)
Definition: apn.c:57
int osmo_apn_from_str(uint8_t *apn_enc, size_t max_apn_enc_len, const char *str)
Convert a dot-separated string into an encoded APN.
Definition: apn.c:133
char * osmo_apn_qualify_c(const void *ctx, unsigned int mcc, unsigned int mnc, const char *ni)
Definition: apn.c:49
char * osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni)
Definition: apn.c:44
char * osmo_apn_qualify_from_imsi(const char *imsi, const char *ni, int have_3dig_mnc)
Definition: apn.c:75