summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Tan <samueltan@google.com>2016-05-07 00:46:23 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-05-07 00:46:23 +0000
commita83fead33dba4ea14a78aef0aaf6d3dc346f7f1f (patch)
tree97c9d5e5e3cb52b0be756560e6e5cf85df6ab28a
parent9171fdae5b2cb8250d4296a08288e0c8ec21be8d (diff)
parent98b0e9ac68dfe167620bbfd484f85f7861c034a9 (diff)
downloadshill-a83fead33dba4ea14a78aef0aaf6d3dc346f7f1f.tar.gz
shill: update error types in IService Binder interface am: 572b6fe95c
am: 98b0e9ac68 * commit '98b0e9ac68dfe167620bbfd484f85f7861c034a9': shill: update error types in IService Binder interface Change-Id: Iafad773661ea75aedc190a994e18099bccaf0193
-rw-r--r--binder/android/system/connectivity/shill/IService.aidl30
1 files changed, 16 insertions, 14 deletions
diff --git a/binder/android/system/connectivity/shill/IService.aidl b/binder/android/system/connectivity/shill/IService.aidl
index 88cd3dac..9c26e7a2 100644
--- a/binder/android/system/connectivity/shill/IService.aidl
+++ b/binder/android/system/connectivity/shill/IService.aidl
@@ -51,24 +51,26 @@ interface IService {
* Note: keep in sync with Service::ConnectFailureToString() and Flimflam
* error options in system_api/dbus/shill/dbus-constants.h.
*/
- const int ERROR_IDLE = 0;
- const int ERROR_AAA_FAILED = 1;
- const int ERROR_ACTIVATION_FAILED = 2;
- const int ERROR_BAD_PASSPHRASE = 3;
- const int ERROR_BAD_WEP_KEY = 4;
- const int ERROR_CONNECT_FAILED = 5;
- const int ERROR_DNS_LOOKUP_FAILED = 6;
- const int ERROR_DHCP_FAILED = 7;
- const int ERROR_HTTP_GET_FAILED = 8;
- const int ERROR_INTERNAL = 9;
+ const int ERROR_AAA_FAILED = 0;
+ const int ERROR_ACTIVATION_FAILED = 1;
+ const int ERROR_BAD_PASSPHRASE = 2;
+ const int ERROR_BAD_WEP_KEY = 3;
+ const int ERROR_CONNECT_FAILED = 4;
+ const int ERROR_DNS_LOOKUP_FAILED = 5;
+ const int ERROR_DHCP_FAILED = 6;
+ const int ERROR_HTTP_GET_FAILED = 7;
+ const int ERROR_INTERNAL = 8;
+ const int ERROR_INVALID_FAILURE = 9;
const int ERROR_IPSEC_CERT_AUTH_FAILED = 10;
const int ERROR_IPSEC_PSK_AUTH_FAILED = 11;
const int ERROR_NEED_EVDO = 12;
const int ERROR_NEED_HOME_NETWORK = 13;
- const int ERROR_OTASP_FAILED = 14;
- const int ERROR_OUT_OF_RANGE = 15;
- const int ERROR_PIN_MISSING = 16;
- const int ERROR_PPP_AUTH_FAILED = 17;
+ const int ERROR_NO_FAILURE = 14;
+ const int ERROR_OTASP_FAILED = 15;
+ const int ERROR_OUT_OF_RANGE = 16;
+ const int ERROR_PIN_MISSING = 17;
+ const int ERROR_PPP_AUTH_FAILED = 18;
+ const int ERROR_UNKNOWN_FAILURE = 19;
/**
* Tethering values that can returned by GetTethering().