These are needed to fix RIL crashing when trying to attach the initial
APN.
For LTE to work, these fields must be initialized to sane values.
Defaults that I found are "IP" for roamingProtocol and 0 for imsType.
Our custom libril in hardware/samsung will be updated to account for these
requirements.
Change-Id: Iad3c078bf6205d0d45ea5006070f2e1de5a972ea
(None: 0, PAP: 1, CHAP: 2, PAP&CHAP: 3) */
char *username; /* the username for APN, or NULL */
char *password; /* the password for APN, or NULL */
+#ifdef NEEDS_ROAMING_PROTOCOL_FIELD
+ char *roamingProtocol;
+#endif
+#ifdef NEEDS_IMS_TYPE_FIELD
+ int imsType;
+#endif
} RIL_InitialAttachApn;
typedef struct {