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-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