Notify RIL that PDP reset is triggered due to data stall
Additional deactivate cause so RIL could take intelligent action on data stall occurrence if necessary. Change-Id: Iae4accda879efb5679085c518117617fb16631c3
This commit is contained in:
committed by
Wink Saville
parent
2b534e770d
commit
edbe2cc386
@@ -249,6 +249,8 @@ public abstract class DataConnection extends StateMachine {
|
||||
Message m = dp.onCompletedMsg;
|
||||
if (TextUtils.equals(dp.reason, Phone.REASON_RADIO_TURNED_OFF)) {
|
||||
discReason = RILConstants.DEACTIVATE_REASON_RADIO_OFF;
|
||||
} else if (TextUtils.equals(dp.reason, Phone.REASON_PDP_RESET)) {
|
||||
discReason = RILConstants.DEACTIVATE_REASON_PDP_RESET;
|
||||
}
|
||||
}
|
||||
if (phone.mCM.getRadioState().isOn()) {
|
||||
|
||||
@@ -113,6 +113,7 @@ public interface RILConstants {
|
||||
/* Deactivate data call reasons */
|
||||
int DEACTIVATE_REASON_NONE = 0;
|
||||
int DEACTIVATE_REASON_RADIO_OFF = 1;
|
||||
int DEACTIVATE_REASON_PDP_RESET = 2;
|
||||
|
||||
/*
|
||||
cat include/telephony/ril.h | \
|
||||
|
||||
Reference in New Issue
Block a user