Add authType to SETUP_DATA_CALL, errorCode to RIL_SMS_Response.
1.Add an additional parameter to specify the
authType (PAP / CHAP) to SETUP_DATA_CALL.
2.Add errorCode to RIL_SMS_Response
diff --git a/libril/ril.cpp b/libril/ril.cpp
index fae17ca..dc69b14 100644
--- a/libril/ril.cpp
+++ b/libril/ril.cpp
@@ -1365,10 +1365,11 @@
p.writeInt32(p_cur->messageRef);
writeStringToParcel(p, p_cur->ackPDU);
+ p.writeInt32(p_cur->errorCode);
startResponse;
- appendPrintBuf("%s%d,%s", printBuf, p_cur->messageRef,
- (char*)p_cur->ackPDU);
+ appendPrintBuf("%s%d,%s,%d", printBuf, p_cur->messageRef,
+ (char*)p_cur->ackPDU, p_cur->errorCode);
closeResponse;
return 0;