portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers apndb.h Source File

apndb.h

00001 #ifndef APNDB_H
00002 #define APNDb_H
00003 
00004 // Defiles the base type for storing mcc/mnc-apn/user/pass tuples
00005 typedef struct
00006 {
00007     const char *mcc; // mobile country code
00008     const char *mnc; // mobile network code
00009     const char *carrier;
00010     const char *apn;
00011 } apndb_t;
00012 
00013 apndb_t * apndb_get(const char * imsi);
00014 
00015 #endif