summaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm/apn.h
blob: d8d73996f44de960d087aa982beb0f01b5a065e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <stdint.h>

/* 23.003 Section 9.1.1, excluding any terminating zero byte */
#define APN_NI_MAXLEN	63

/* 23.003 Section 9.1, excluding any terminating zero byte */
#define APN_MAXLEN	100

char *osmo_apn_qualify(unsigned int mcc, unsigned int mnc, const char *ni);
char *osmo_apn_qualify_from_imsi(const char *imsi,
				 const char *ni, int have_3dig_mnc);