Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: apndb.h
- Revision:
- 23:0a48eebaaba8
- Child:
- 29:853741b9ea3b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apndb.h Mon Mar 24 09:58:46 2014 +0000 @@ -0,0 +1,16 @@ +#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 \ No newline at end of file