SmartREST client reference implementation for the u-blox C027 mbed compatible device.

Dependencies:   C027 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832

Fork of MbedSmartRestTest by Vincent Wochnik

apndb.h

Committer:
vwochnik
Date:
2014-07-03
Revision:
35:ee1c6289e617
Parent:
29:853741b9ea3b

File content as of revision 35:ee1c6289e617:

#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