Mbed OS Reference
Loading...
Searching...
No Matches
APN_db.h
1/* mbed Microcontroller Library
2 * Copyright (c) 2017 ublox, ARM Limited
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18/* ----------------------------------------------------------------
19 APN stands for Access Point Name, a setting on your modem or phone
20 that identifies an external network your phone can access for data
21 (e.g. 3G or 4G Internet service on your phone).
22
23 The APN settings can be forced when calling the join function.
24 Below is a list of known APNs that us used if no apn config
25 is forced. This list could be extended by other settings.
26
27 For further reading:
28 wiki apn: http://en.wikipedia.org/wiki/Access_Point_Name
29 wiki mcc/mnc: http://en.wikipedia.org/wiki/Mobile_country_code
30 google: https://www.google.de/search?q=APN+list
31---------------------------------------------------------------- */
32#ifndef APN_DB_H_
33#define APN_DB_H_
34
35#include <string.h>
36
37/**
38 * Helper to extract a field from the cfg string
39 */
40#define _APN_GET(cfg) \
41 *cfg ? cfg : NULL; \
42 cfg += strlen(cfg) + 1
43
44/**
45 * Configuring APN by extraction from IMSI and matching the table.
46 *
47 * @param imsi string containing IMSI
48 */
49const char *apnconfig(const char *imsi);
50
51#endif // #define APN_DB_H_