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 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832
Fork of MbedSmartRestTest by
Diff: apndb.h
- Revision:
- 29:853741b9ea3b
- Parent:
- 23:0a48eebaaba8
--- a/apndb.h	Sun May 25 17:46:19 2014 +0000
+++ b/apndb.h	Mon May 26 08:10:27 2014 +0000
@@ -4,11 +4,10 @@
 // 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];
+    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);
    