portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

apndb.h

Committer:
ublox
Date:
2014-10-03
Revision:
56:2da813cc2f47
Parent:
29:853741b9ea3b

File content as of revision 56:2da813cc2f47:

#ifndef APNDB_H
#define APNDb_H

// Defiles the base type for storing mcc/mnc-apn/user/pass tuples
typedef struct
{
    const char *mcc; // mobile country code
    const char *mnc; // mobile network code
    const char *carrier;
    const char *apn;
} apndb_t;

apndb_t * apndb_get(const char * imsi);

#endif