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-03-24
Revision:
23:0a48eebaaba8
Child:
29:853741b9ea3b

File content as of revision 23:0a48eebaaba8:

#ifndef APNDB_H
#define APNDb_H

// Defiles the base type for storing mcc/mnc-apn/user/pass tuples
typedef struct
{
    char mcc[4]; // mobile country code
    char mnc[4]; // mobile network code
    char apn[32];
    char user[32];
    char pass[32];
} apndb_t;

apndb_t * apndb_get(const char * imsi);

#endif