blob: d8d73996f44de960d087aa982beb0f01b5a065e5 [file] [log] [blame]
Harald Welte908085c2014-10-01 16:18:11 +08001#pragma once
2
3#include <stdint.h>
4
5/* 23.003 Section 9.1.1, excluding any terminating zero byte */
6#define APN_NI_MAXLEN 63
7
8/* 23.003 Section 9.1, excluding any terminating zero byte */
9#define APN_MAXLEN 100
10
11char *osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni);
12char *osmo_apn_qualify_from_imsi(const char *imsi,
13 const char *ni, int have_3dig_mnc);