Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2d17d3b authored by Wink Saville's avatar Wink Saville Committed by Android (Google) Code Review
Browse files

Merge "Make APN re-connect delay configuable" into honeycomb-LTE

parents 82c1a5de c65d52b1
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -145,8 +145,10 @@ public abstract class DataConnectionTracker extends Handler {

    public static final String APN_TYPE_KEY = "apnType";

    /** Delay between APN attempts */
    protected static final int APN_DELAY_MILLIS = 5000;
    /** Delay between APN attempts.
        Note the property override mechanism is there just for testing purpose only. */
    protected static final int APN_DELAY_MILLIS =
                                SystemProperties.getInt("persist.radio.apn_delay", 5000);

    // responds to the setInternalDataEnabled call - used internally to turn off data
    // for example during emergency calls