libosmogsm 1.9.0.196-9975
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
13char *osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni);
14char *osmo_apn_qualify_buf(char *buf, size_t buf_len, unsigned int mcc, unsigned int mnc, const char *ni);
15char *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. */
19char *osmo_apn_qualify_from_imsi(const char *imsi,
20 const char *ni, int have_3dig_mnc);
21char *osmo_apn_qualify_from_imsi_buf(char *buf, size_t buf_len, const char *imsi,
22 const char *ni, int have_3dig_mnc);
23char *osmo_apn_qualify_from_imsi_c(const void *ctx, const char *imsi, const char *ni, int have_3dig_mnc);
24
25int osmo_apn_from_str(uint8_t *apn_enc, size_t max_apn_enc_len, const char *str);
26char *osmo_apn_to_str(char *out_str, const uint8_t *apn_enc, size_t apn_enc_len);
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
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
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_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
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