aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/SupplicantState.h
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-05-07 11:37:10 -0700
committerSan Mehat <san@google.com>2009-05-09 10:33:18 -0700
commit1441e769b2767e212a3d905bee2fd3535b484ff2 (patch)
tree726f46620c2e9c4063ed9ecdd7e0cafcb6b6005e /nexus/SupplicantState.h
parentb3779558dcfbe99f0b9c1ef796e3728edad25672 (diff)
downloadsystem_core-1441e769b2767e212a3d905bee2fd3535b484ff2.tar.gz
system_core-1441e769b2767e212a3d905bee2fd3535b484ff2.tar.bz2
system_core-1441e769b2767e212a3d905bee2fd3535b484ff2.zip
nexus: Implement wifi scanner and fix a lot of bugs
Signed-off-by: San Mehat <san@google.com>
Diffstat (limited to 'nexus/SupplicantState.h')
-rw-r--r--nexus/SupplicantState.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/nexus/SupplicantState.h b/nexus/SupplicantState.h
index f2cf6039..e85dcb50 100644
--- a/nexus/SupplicantState.h
+++ b/nexus/SupplicantState.h
@@ -18,16 +18,16 @@
class SupplicantState {
public:
- static const int UNKNOWN = 0;
- static const int DISCONNECTED = 1;
- static const int INACTIVE = 2;
- static const int SCANNING = 3;
- static const int ASSOCIATING = 4;
- static const int ASSOCIATED = 5;
- static const int FOURWAY_HANDSHAKE = 6;
- static const int GROUP_HANDSHAKE = 7;
- static const int COMPLETED = 8;
- static const int IDLE = 9;
+ static const int UNKNOWN = -1;
+ static const int DISCONNECTED = 0;
+ static const int INACTIVE = 1;
+ static const int SCANNING = 2;
+ static const int ASSOCIATING = 3;
+ static const int ASSOCIATED = 4;
+ static const int FOURWAY_HANDSHAKE = 5;
+ static const int GROUP_HANDSHAKE = 6;
+ static const int COMPLETED = 7;
+ static const int IDLE = 8;
};
#endif