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:
vwochnik
Date:
2014-05-26
Revision:
29:853741b9ea3b
Parent:
23:0a48eebaaba8

File content as of revision 29:853741b9ea3b:

#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